Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Unified Diff: chrome/browser/extensions/api/app_window/app_window_api.h

Issue 10659021: Move chrome.appWindow to chrome.app.window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/platform_app_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/app_window/app_window_api.h
diff --git a/chrome/browser/extensions/api/app_window/app_window_api.h b/chrome/browser/extensions/api/app_window/app_window_api.h
index cb722baf6736fefebce9f5fbe64312a754fefde4..8ac57b98bdb63ab914dbe60617a2d8cef1ac96fd 100644
--- a/chrome/browser/extensions/api/app_window/app_window_api.h
+++ b/chrome/browser/extensions/api/app_window/app_window_api.h
@@ -24,7 +24,7 @@ class AppWindowExtensionFunction : public SyncExtensionFunction {
class AppWindowCreateFunction : public SyncExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("appWindow.create");
+ DECLARE_EXTENSION_FUNCTION_NAME("app.window.create");
protected:
virtual ~AppWindowCreateFunction() {}
@@ -33,7 +33,7 @@ class AppWindowCreateFunction : public SyncExtensionFunction {
class AppWindowFocusFunction : public AppWindowExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("appWindow.focus");
+ DECLARE_EXTENSION_FUNCTION_NAME("app.window.focus");
protected:
virtual ~AppWindowFocusFunction() {}
@@ -42,7 +42,7 @@ class AppWindowFocusFunction : public AppWindowExtensionFunction {
class AppWindowMaximizeFunction : public AppWindowExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("appWindow.maximize");
+ DECLARE_EXTENSION_FUNCTION_NAME("app.window.maximize");
protected:
virtual ~AppWindowMaximizeFunction() {}
@@ -51,7 +51,7 @@ class AppWindowMaximizeFunction : public AppWindowExtensionFunction {
class AppWindowMinimizeFunction : public AppWindowExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("appWindow.minimize");
+ DECLARE_EXTENSION_FUNCTION_NAME("app.window.minimize");
protected:
virtual ~AppWindowMinimizeFunction() {}
@@ -60,7 +60,7 @@ class AppWindowMinimizeFunction : public AppWindowExtensionFunction {
class AppWindowRestoreFunction : public AppWindowExtensionFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("appWindow.restore");
+ DECLARE_EXTENSION_FUNCTION_NAME("app.window.restore");
protected:
virtual ~AppWindowRestoreFunction() {}
« no previous file with comments | « no previous file | chrome/browser/extensions/platform_app_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698