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

Unified Diff: chrome/browser/policy/cloud/user_policy_signin_service_android.h

Issue 23382008: Making OAuth2TokenService multi-login aware, updating callers, minor fixes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing to include the update to ProfileSyncService: r224220 Created 7 years, 3 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/policy/cloud/user_policy_signin_service_android.h
diff --git a/chrome/browser/policy/cloud/user_policy_signin_service_android.h b/chrome/browser/policy/cloud/user_policy_signin_service_android.h
index 4ae97160f9293579626cfe7c56b14d35040443ed..003cf4b5929fc232db1c83a82d8321d10916611c 100644
--- a/chrome/browser/policy/cloud/user_policy_signin_service_android.h
+++ b/chrome/browser/policy/cloud/user_policy_signin_service_android.h
@@ -14,7 +14,7 @@
#include "base/memory/weak_ptr.h"
#include "chrome/browser/policy/cloud/user_policy_signin_service_base.h"
-class AndroidProfileOAuth2TokenService;
+class ProfileOAuth2TokenService;
class Profile;
namespace net {
@@ -34,7 +34,7 @@ class UserPolicySigninService : public UserPolicySigninServiceBase {
PrefService* local_state,
scoped_refptr<net::URLRequestContextGetter> request_context,
DeviceManagementService* device_management_service,
- AndroidProfileOAuth2TokenService* token_service);
+ ProfileOAuth2TokenService* token_service);
virtual ~UserPolicySigninService();
// Registers a CloudPolicyClient for fetching policy for |username|.
@@ -68,7 +68,7 @@ class UserPolicySigninService : public UserPolicySigninServiceBase {
// Weak pointer to the token service used to authenticate the
// CloudPolicyClient during registration.
- AndroidProfileOAuth2TokenService* oauth2_token_service_;
+ ProfileOAuth2TokenService* oauth2_token_service_;
DISALLOW_COPY_AND_ASSIGN(UserPolicySigninService);
};

Powered by Google App Engine
This is Rietveld 408576698