| Index: chrome/browser/chromeos/extensions/echo_private_api.h
|
| diff --git a/chrome/browser/chromeos/extensions/echo_private_api.h b/chrome/browser/chromeos/extensions/echo_private_api.h
|
| index b22f586ee0a9ae3df3893452ac3e7d789c395e90..3435501c514af6bee769357584c21ac8dd251492 100644
|
| --- a/chrome/browser/chromeos/extensions/echo_private_api.h
|
| +++ b/chrome/browser/chromeos/extensions/echo_private_api.h
|
| @@ -31,7 +31,7 @@ class EchoPrivateGetRegistrationCodeFunction
|
|
|
| protected:
|
| virtual ~EchoPrivateGetRegistrationCodeFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void GetRegistrationCode(const std::string& type);
|
| @@ -46,7 +46,7 @@ class EchoPrivateGetOobeTimestampFunction
|
|
|
| protected:
|
| virtual ~EchoPrivateGetOobeTimestampFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| bool GetOobeTimestampOnFileThread();
|
| @@ -60,7 +60,7 @@ class EchoPrivateSetOfferInfoFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~EchoPrivateSetOfferInfoFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| DECLARE_EXTENSION_FUNCTION("echoPrivate.setOfferInfo",
|
| @@ -73,7 +73,7 @@ class EchoPrivateGetOfferInfoFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~EchoPrivateGetOfferInfoFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| DECLARE_EXTENSION_FUNCTION("echoPrivate.getOfferInfo",
|
| @@ -102,7 +102,7 @@ class EchoPrivateGetUserConsentFunction : public ChromeAsyncExtensionFunction,
|
| protected:
|
| virtual ~EchoPrivateGetUserConsentFunction();
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| // chromeos::EchoDialogListener overrides.
|
|
|