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

Unified Diff: chrome/browser/extensions/extension_input_ui_api.h

Issue 8570026: Rearrange the input APIs into more suitable groupings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code Review Created 9 years, 1 month 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
Index: chrome/browser/extensions/extension_input_ui_api.h
diff --git a/chrome/browser/extensions/extension_input_ui_api.h b/chrome/browser/extensions/extension_input_ui_api.h
index 69e202d2baf86ebf9e631e62252740d47703aa74..de3e9585999fb88046e5513803e13b3ee90248b6 100644
--- a/chrome/browser/extensions/extension_input_ui_api.h
+++ b/chrome/browser/extensions/extension_input_ui_api.h
@@ -69,37 +69,37 @@ class ExtensionInputUiEventRouter
class RegisterInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.register");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.register");
};
class CandidateClickedInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.candidateClicked");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.candidateClicked");
};
class CursorUpInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.cursorUp");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.cursorUp");
};
class CursorDownInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.cursorDown");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.cursorDown");
};
class PageUpInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.pageUp");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.pageUp");
};
class PageDownInputUiFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.inputUI.pageDown");
+ DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ui.pageDown");
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_UI_API_H_
« no previous file with comments | « chrome/browser/extensions/extension_input_ime_api.cc ('k') | chrome/browser/extensions/extension_input_ui_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698