| Index: components/policy/core/common/cloud/cloud_policy_client_registration_helper.cc
|
| diff --git a/components/policy/core/common/cloud/cloud_policy_client_registration_helper.cc b/components/policy/core/common/cloud/cloud_policy_client_registration_helper.cc
|
| index a28e4d3764258a34ebf6be9ca520f3ef06e130d1..f4b2699988d8fa785304927ee1eb424a86e0f571 100644
|
| --- a/components/policy/core/common/cloud/cloud_policy_client_registration_helper.cc
|
| +++ b/components/policy/core/common/cloud/cloud_policy_client_registration_helper.cc
|
| @@ -52,7 +52,7 @@ class CloudPolicyClientRegistrationHelper::TokenServiceHelper
|
| const GoogleServiceAuthError& error) override;
|
|
|
| StringCallback callback_;
|
| - scoped_ptr<OAuth2TokenService::Request> token_request_;
|
| + std::unique_ptr<OAuth2TokenService::Request> token_request_;
|
| };
|
|
|
| CloudPolicyClientRegistrationHelper::TokenServiceHelper::TokenServiceHelper()
|
| @@ -113,7 +113,7 @@ class CloudPolicyClientRegistrationHelper::LoginTokenHelper
|
| void OnGetTokenFailure(const GoogleServiceAuthError& error) override;
|
|
|
| StringCallback callback_;
|
| - scoped_ptr<OAuth2AccessTokenFetcher> oauth2_access_token_fetcher_;
|
| + std::unique_ptr<OAuth2AccessTokenFetcher> oauth2_access_token_fetcher_;
|
| };
|
|
|
| CloudPolicyClientRegistrationHelper::LoginTokenHelper::LoginTokenHelper() {}
|
|
|