| Index: chrome/browser/extensions/api/input_ime/input_ime_api.h
|
| diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api.h b/chrome/browser/extensions/api/input_ime/input_ime_api.h
|
| index 9bce8fc061827c339ca46659280fd2ebf3e8127a..f7f73d2546c141290cc5b5124a8305d7f9974a0d 100644
|
| --- a/chrome/browser/extensions/api/input_ime/input_ime_api.h
|
| +++ b/chrome/browser/extensions/api/input_ime/input_ime_api.h
|
| @@ -86,7 +86,7 @@ class InputImeSetCompositionFunction : public SyncExtensionFunction {
|
| virtual ~InputImeSetCompositionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeClearCompositionFunction : public SyncExtensionFunction {
|
| @@ -98,7 +98,7 @@ class InputImeClearCompositionFunction : public SyncExtensionFunction {
|
| virtual ~InputImeClearCompositionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeCommitTextFunction : public SyncExtensionFunction {
|
| @@ -109,7 +109,7 @@ class InputImeCommitTextFunction : public SyncExtensionFunction {
|
| virtual ~InputImeCommitTextFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeSetCandidateWindowPropertiesFunction
|
| @@ -122,7 +122,7 @@ class InputImeSetCandidateWindowPropertiesFunction
|
| virtual ~InputImeSetCandidateWindowPropertiesFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeSetCandidatesFunction : public SyncExtensionFunction {
|
| @@ -133,7 +133,7 @@ class InputImeSetCandidatesFunction : public SyncExtensionFunction {
|
| virtual ~InputImeSetCandidatesFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
|
| @@ -145,7 +145,7 @@ class InputImeSetCursorPositionFunction : public SyncExtensionFunction {
|
| virtual ~InputImeSetCursorPositionFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
|
| @@ -156,7 +156,7 @@ class InputImeSetMenuItemsFunction : public SyncExtensionFunction {
|
| virtual ~InputImeSetMenuItemsFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
|
| @@ -168,7 +168,7 @@ class InputImeUpdateMenuItemsFunction : public SyncExtensionFunction {
|
| virtual ~InputImeUpdateMenuItemsFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
|
| @@ -179,7 +179,7 @@ class InputImeDeleteSurroundingTextFunction : public SyncExtensionFunction {
|
| virtual ~InputImeDeleteSurroundingTextFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeKeyEventHandledFunction : public AsyncExtensionFunction {
|
| @@ -191,7 +191,7 @@ class InputImeKeyEventHandledFunction : public AsyncExtensionFunction {
|
| virtual ~InputImeKeyEventHandledFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeSendKeyEventsFunction : public AsyncExtensionFunction {
|
| @@ -203,7 +203,7 @@ class InputImeSendKeyEventsFunction : public AsyncExtensionFunction {
|
| virtual ~InputImeSendKeyEventsFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeHideInputViewFunction : public AsyncExtensionFunction {
|
| @@ -215,7 +215,7 @@ class InputImeHideInputViewFunction : public AsyncExtensionFunction {
|
| virtual ~InputImeHideInputViewFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class InputImeAPI : public BrowserContextKeyedAPI,
|
|
|