diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 04:22:33 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-18 04:22:33 +0000 |
commit | c9846903c3d1862c06e5838d0ae451360a11b015 (patch) | |
tree | 8061e42fce73bee1326362117db80b019a85b8f8 /chrome/browser/extensions/extension_input_api.h | |
parent | d4577efdc34bc6d6d7a40475188e3abc36ed743c (diff) | |
download | chromium_src-c9846903c3d1862c06e5838d0ae451360a11b015.zip chromium_src-c9846903c3d1862c06e5838d0ae451360a11b015.tar.gz chromium_src-c9846903c3d1862c06e5838d0ae451360a11b015.tar.bz2 |
Rearrange the input APIs into more suitable groupings.
BUG=chromium-os:23058
TEST=None
Review URL: http://codereview.chromium.org/8570026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_input_api.h')
-rw-r--r-- | chrome/browser/extensions/extension_input_api.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/chrome/browser/extensions/extension_input_api.h b/chrome/browser/extensions/extension_input_api.h index d72d9cb..6fac2ce 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 |