| 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 351aad954126b45c9cbd2d0a5ca4d1ded240a62d..9d3f6b8f185adf1220e25a7a098a1ea8e3f360c3 100644
|
| --- a/chrome/browser/extensions/api/identity/identity_api.h
|
| +++ b/chrome/browser/extensions/api/identity/identity_api.h
|
| @@ -295,6 +295,21 @@ class IdentityGetAuthTokenFunction : public ChromeAsyncExtensionFunction,
|
| scoped_ptr<IdentitySigninFlow> signin_flow_;
|
| };
|
|
|
| +class IdentityGetProfileUserInfoFunction
|
| + : public ChromeUIThreadExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION("identity.getProfileUserInfo",
|
| + IDENTITY_GETPROFILEUSERINFO);
|
| +
|
| + IdentityGetProfileUserInfoFunction();
|
| +
|
| + private:
|
| + virtual ~IdentityGetProfileUserInfoFunction();
|
| +
|
| + // UIThreadExtensionFunction implementation.
|
| + virtual ExtensionFunction::ResponseAction Run() OVERRIDE;
|
| +};
|
| +
|
| class IdentityRemoveCachedAuthTokenFunction
|
| : public ChromeSyncExtensionFunction {
|
| public:
|
|
|