| Index: components/signin/ios/browser/profile_oauth2_token_service_ios_delegate.h
|
| diff --git a/components/signin/ios/browser/profile_oauth2_token_service_ios_delegate.h b/components/signin/ios/browser/profile_oauth2_token_service_ios_delegate.h
|
| index 4e4a8eb5f52f3586e19d6ec156320280711c85e4..10ea6c9d379758cde55ef54ab048d9493eda72fe 100644
|
| --- a/components/signin/ios/browser/profile_oauth2_token_service_ios_delegate.h
|
| +++ b/components/signin/ios/browser/profile_oauth2_token_service_ios_delegate.h
|
| @@ -20,7 +20,7 @@ class ProfileOAuth2TokenServiceIOSDelegate : public OAuth2TokenServiceDelegate {
|
| public:
|
| ProfileOAuth2TokenServiceIOSDelegate(
|
| SigninClient* client,
|
| - ProfileOAuth2TokenServiceIOSProvider* provider,
|
| + std::unique_ptr<ProfileOAuth2TokenServiceIOSProvider> provider,
|
| AccountTrackerService* account_tracker_service,
|
| SigninErrorController* signin_error_controller);
|
| ~ProfileOAuth2TokenServiceIOSDelegate() override;
|
| @@ -116,7 +116,7 @@ class ProfileOAuth2TokenServiceIOSDelegate : public OAuth2TokenServiceDelegate {
|
|
|
| // The client with which this instance was initialied, or NULL.
|
| SigninClient* client_;
|
| - ProfileOAuth2TokenServiceIOSProvider* provider_;
|
| + std::unique_ptr<ProfileOAuth2TokenServiceIOSProvider> provider_;
|
| AccountTrackerService* account_tracker_service_;
|
|
|
| // The error controller with which this instance was initialized, or NULL.
|
|
|