| Index: chrome/browser/extensions/extension_input_ime_api.h
|
| diff --git a/chrome/browser/extensions/extension_input_ime_api.h b/chrome/browser/extensions/extension_input_ime_api.h
|
| index 063ba38b7433fb3a288b5c00971d82a52326e983..32ecd04ef8d1c33d130ab117c1fe642a46c6512f 100644
|
| --- a/chrome/browser/extensions/extension_input_ime_api.h
|
| +++ b/chrome/browser/extensions/extension_input_ime_api.h
|
| @@ -68,35 +68,35 @@ class SetCompositionFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.setComposition");
|
| + "experimental.input.ime.setComposition");
|
| };
|
|
|
| class ClearCompositionFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.clearComposition");
|
| + "experimental.input.ime.clearComposition");
|
| };
|
|
|
| class CommitTextFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.commitText");
|
| + "experimental.input.ime.commitText");
|
| };
|
|
|
| class SetCandidateWindowPropertiesFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.setCandidateWindowProperties");
|
| + "experimental.input.ime.setCandidateWindowProperties");
|
| };
|
|
|
| class SetCandidatesFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.setCandidates");
|
| + "experimental.input.ime.setCandidates");
|
| private:
|
| bool ReadCandidates(
|
| ListValue* candidates,
|
| @@ -107,27 +107,27 @@ class SetCursorPositionFunction : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.setCursorPosition");
|
| + "experimental.input.ime.setCursorPosition");
|
| };
|
|
|
| class SetMenuItemsFunction : public SyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.setMenuItems");
|
| + "experimental.input.ime.setMenuItems");
|
| };
|
|
|
| class UpdateMenuItemsFunction : public SyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| - "experimental.input.updateMenuItems");
|
| + "experimental.input.ime.updateMenuItems");
|
| };
|
|
|
| class InputEventHandled : public AsyncExtensionFunction {
|
| public:
|
| virtual bool RunImpl();
|
| - DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.eventHandled");
|
| + DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled");
|
| };
|
|
|
| #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INPUT_IME_API_H_
|
|
|