| 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 32ecd04ef8d1c33d130ab117c1fe642a46c6512f..fe5bfa7d5d7177de00d5b1c139a3f264fbe8917b 100644
|
| --- a/chrome/browser/extensions/extension_input_ime_api.h
|
| +++ b/chrome/browser/extensions/extension_input_ime_api.h
|
| @@ -66,35 +66,35 @@ class ExtensionInputImeEventRouter {
|
|
|
| class SetCompositionFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.setComposition");
|
| };
|
|
|
| class ClearCompositionFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.clearComposition");
|
| };
|
|
|
| class CommitTextFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.commitText");
|
| };
|
|
|
| class SetCandidateWindowPropertiesFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.setCandidateWindowProperties");
|
| };
|
|
|
| class SetCandidatesFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.setCandidates");
|
| private:
|
| @@ -105,28 +105,28 @@ class SetCandidatesFunction : public AsyncExtensionFunction {
|
|
|
| class SetCursorPositionFunction : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.setCursorPosition");
|
| };
|
|
|
| class SetMenuItemsFunction : public SyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.setMenuItems");
|
| };
|
|
|
| class UpdateMenuItemsFunction : public SyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME(
|
| "experimental.input.ime.updateMenuItems");
|
| };
|
|
|
| class InputEventHandled : public AsyncExtensionFunction {
|
| public:
|
| - virtual bool RunImpl();
|
| + virtual bool RunImpl() OVERRIDE;
|
| DECLARE_EXTENSION_FUNCTION_NAME("experimental.input.ime.eventHandled");
|
| };
|
|
|
|
|