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

Unified Diff: chrome/browser/policy/device_token_fetcher.h

Issue 4960003: Don't register gmail users at the device management server (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 10 years, 1 month 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/device_token_fetcher.h
diff --git a/chrome/browser/policy/device_token_fetcher.h b/chrome/browser/policy/device_token_fetcher.h
index 7704d35cdc0c4391fbba84be422896a6ed321de8..c3f27142d810195f213d77b56c893920130b591d 100644
--- a/chrome/browser/policy/device_token_fetcher.h
+++ b/chrome/browser/policy/device_token_fetcher.h
@@ -15,7 +15,7 @@
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
-class TokenService;
+class Profile;
namespace policy {
@@ -35,7 +35,7 @@ class DeviceTokenFetcher
// obtains the authentication token from |token_service|. The fetcher stores
// the device token to |token_path| once it's retrieved from the server.
DeviceTokenFetcher(DeviceManagementBackend* backend,
- TokenService* token_service,
+ Profile* profile,
const FilePath& token_path);
virtual ~DeviceTokenFetcher() {}
@@ -76,6 +76,14 @@ class DeviceTokenFetcher
// True if the device token has been fetched and is valid.
bool IsTokenValid() const;
+ protected:
+ // Returns the email address of the currently logged-in user.
+ virtual std::string GetCurrentUser();
+
+ // Used to identify GOOGLE_SIGNIN_SUCCESSFUL notifications from the owning
+ // profile, and to query for the current username.
+ Profile* profile_; // weak
+
private:
friend class DeviceTokenFetcherTest;
@@ -126,7 +134,6 @@ class DeviceTokenFetcher
FilePath token_path_;
DeviceManagementBackend* backend_; // weak
- TokenService* token_service_;
FetcherState state_;
std::string device_token_;
std::string device_id_;

Powered by Google App Engine
This is Rietveld 408576698