diff options
author | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-30 05:20:08 +0000 |
---|---|---|
committer | kalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-30 05:20:08 +0000 |
commit | 533ef3d365c29ff78439edc6acf7e0ba3803bf26 (patch) | |
tree | 5d6e30a217673dea7fb649fb7af5c76c46a44033 /chrome/browser/chromeos/extensions/input_method_api.h | |
parent | ac9142eab1d80e2e8da9c827772ac6157e35d804 (diff) | |
download | chromium_src-533ef3d365c29ff78439edc6acf7e0ba3803bf26.zip chromium_src-533ef3d365c29ff78439edc6acf7e0ba3803bf26.tar.gz chromium_src-533ef3d365c29ff78439edc6acf7e0ba3803bf26.tar.bz2 |
Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl
function doesn't require divergent return value semantics depending on subclass.
BUG=365732
R=rockot@chromium.org
TBR=pkasting@chromium.org,dtseng@chromium.org
Review URL: https://codereview.chromium.org/252653002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/extensions/input_method_api.h')
-rw-r--r-- | chrome/browser/chromeos/extensions/input_method_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/extensions/input_method_api.h b/chrome/browser/chromeos/extensions/input_method_api.h index c940ebb..d7a4d7f 100644 --- a/chrome/browser/chromeos/extensions/input_method_api.h +++ b/chrome/browser/chromeos/extensions/input_method_api.h @@ -25,7 +25,7 @@ class GetInputMethodFunction : public SyncExtensionFunction { protected: virtual ~GetInputMethodFunction(); - virtual bool RunImpl() OVERRIDE; + virtual bool RunSync() OVERRIDE; private: DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.get", INPUTMETHODPRIVATE_GET) @@ -40,7 +40,7 @@ class StartImeFunction : public SyncExtensionFunction { protected: virtual ~StartImeFunction(); - virtual bool RunImpl() OVERRIDE; + virtual bool RunSync() OVERRIDE; private: DECLARE_EXTENSION_FUNCTION("inputMethodPrivate.startIme", |