Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2664)

Unified Diff: components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm

Issue 2121083004: Upstream ProfileOAuth2TokenServiceProviderImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Style nits Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm
diff --git a/components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm b/components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm
index 73224fe285d189da4785ace83de749b5ce9a2f40..51421524f39b73c09cd76e1b0329161681aeeb8c 100644
--- a/components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm
+++ b/components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.mm
@@ -3,16 +3,18 @@
// found in the LICENSE file.
#include "components/signin/ios/browser/fake_profile_oauth2_token_service_ios_delegate.h"
+
+#include "components/signin/ios/browser/profile_oauth2_token_service_ios_provider.h"
#include "google_apis/gaia/oauth2_access_token_fetcher_impl.h"
FakeProfileOAuth2TokenServiceIOSDelegate::
FakeProfileOAuth2TokenServiceIOSDelegate(
SigninClient* client,
- ProfileOAuth2TokenServiceIOSProvider* provider,
+ std::unique_ptr<ProfileOAuth2TokenServiceIOSProvider> provider,
AccountTrackerService* account_tracker_service,
SigninErrorController* signin_error_controller)
: ProfileOAuth2TokenServiceIOSDelegate(client,
- provider,
+ std::move(provider),
account_tracker_service,
signin_error_controller) {}

Powered by Google App Engine
This is Rietveld 408576698