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

Unified Diff: chrome/browser/extensions/extension_input_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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_input_ime_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_input_api.h
diff --git a/chrome/browser/extensions/extension_input_api.h b/chrome/browser/extensions/extension_input_api.h
index d72d9cbc2a26e22009fb0d458c40f7a734738003..6fac2ce95a92d0aede7a7d406364c3b208fa9c6a 100644
--- a/chrome/browser/extensions/extension_input_api.h
+++ b/chrome/browser/extensions/extension_input_api.h
@@ -17,20 +17,23 @@
class SendKeyboardEventInputFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendKeyboardEvent");
+ DECLARE_EXTENSION_FUNCTION_NAME(
+ "experimental.input.virtualKeyboard.sendKeyboardEvent");
};
#if defined(USE_VIRTUAL_KEYBOARD)
class HideKeyboardFunction : public AsyncExtensionFunction {
public:
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.hideKeyboard");
+ DECLARE_EXTENSION_FUNCTION_NAME(
+ "experimental.input.virtualKeyboard.hideKeyboard");
};
class SetKeyboardHeightFunction : public AsyncExtensionFunction {
public:
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.setKeyboardHeight");
+ DECLARE_EXTENSION_FUNCTION_NAME(
+ "experimental.input.virtualKeyboard.setKeyboardHeight");
};
#endif
@@ -44,14 +47,15 @@ class SetKeyboardHeightFunction : public AsyncExtensionFunction {
class SendHandwritingStrokeFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.sendHandwritingStroke");
+ DECLARE_EXTENSION_FUNCTION_NAME(
+ "experimental.input.virtualKeyboard.sendHandwritingStroke");
};
class CancelHandwritingStrokesFunction : public SyncExtensionFunction {
public:
virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME(
- "experimental.input.cancelHandwritingStrokes");
+ "experimental.input.virtualKeyboard.cancelHandwritingStrokes");
};
#endif
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_input_ime_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698