| Index: chrome/browser/extensions/api/power/power_api.h
|
| diff --git a/chrome/browser/extensions/api/power/power_api.h b/chrome/browser/extensions/api/power/power_api.h
|
| index 546ce9355b467355a4038e581fff597e1a9ff7dd..6b12d2ad689220e9736cda73b24a2310cdd9d423 100644
|
| --- a/chrome/browser/extensions/api/power/power_api.h
|
| +++ b/chrome/browser/extensions/api/power/power_api.h
|
| @@ -18,7 +18,7 @@ class PowerRequestKeepAwakeFunction : public SyncExtensionFunction {
|
| virtual ~PowerRequestKeepAwakeFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // Implementation of the chrome.power.releaseKeepAwake API.
|
| @@ -30,7 +30,7 @@ class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction {
|
| virtual ~PowerReleaseKeepAwakeFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|