| Index: chrome/browser/extensions/api/identity/identity_api.h
|
| diff --git a/chrome/browser/extensions/api/identity/identity_api.h b/chrome/browser/extensions/api/identity/identity_api.h
|
| index 77577ce81646328883bad9565c6e40fbcecccc80..f1ad96ba71a88210a7aa0148c93c78970cc28fa7 100644
|
| --- a/chrome/browser/extensions/api/identity/identity_api.h
|
| +++ b/chrome/browser/extensions/api/identity/identity_api.h
|
| @@ -184,7 +184,7 @@ class IdentityGetAuthTokenFunction : public ChromeAsyncExtensionFunction,
|
| friend class MockGetAuthTokenFunction;
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Helpers to report async function results to the caller.
|
| void StartAsyncRun();
|
| @@ -284,7 +284,7 @@ class IdentityRemoveCachedAuthTokenFunction
|
| virtual ~IdentityRemoveCachedAuthTokenFunction();
|
|
|
| // SyncExtensionFunction implementation:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class IdentityLaunchWebAuthFlowFunction : public ChromeAsyncExtensionFunction,
|
| @@ -300,7 +300,7 @@ class IdentityLaunchWebAuthFlowFunction : public ChromeAsyncExtensionFunction,
|
|
|
| private:
|
| virtual ~IdentityLaunchWebAuthFlowFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // WebAuthFlow::Delegate implementation.
|
| virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) OVERRIDE;
|
|
|