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

Unified Diff: chrome/browser/signin/chrome_signin_client_factory.cc

Issue 296703011: Change refs from ChromeSigninClient to base SigninClient class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small tweak on signin_client.h Created 6 years, 7 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: chrome/browser/signin/chrome_signin_client_factory.cc
diff --git a/chrome/browser/signin/chrome_signin_client_factory.cc b/chrome/browser/signin/chrome_signin_client_factory.cc
index 5e42a14a4a291cb63cbc30dc64bc8ed2cc2f6634..11ba30672a453c4ef88b6d29de83cd4986dd3cbe 100644
--- a/chrome/browser/signin/chrome_signin_client_factory.cc
+++ b/chrome/browser/signin/chrome_signin_client_factory.cc
@@ -15,8 +15,8 @@ ChromeSigninClientFactory::ChromeSigninClientFactory()
ChromeSigninClientFactory::~ChromeSigninClientFactory() {}
// static
-ChromeSigninClient* ChromeSigninClientFactory::GetForProfile(Profile* profile) {
- return static_cast<ChromeSigninClient*>(
+SigninClient* ChromeSigninClientFactory::GetForProfile(Profile* profile) {
+ return static_cast<SigninClient*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}

Powered by Google App Engine
This is Rietveld 408576698