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

Side by Side Diff: chrome/browser/supervised_user/legacy/supervised_user_registration_utility.h

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_H_ 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_H_
6 #define CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_H_ 6 #define CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UTILI TY_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/prefs/pref_change_registrar.h"
14 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
15 #include "base/values.h" 14 #include "base/values.h"
16 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h" 15 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service.h"
17 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service_obs erver.h" 16 #include "chrome/browser/supervised_user/legacy/supervised_user_sync_service_obs erver.h"
18 #include "chrome/browser/supervised_user/supervised_users.h" 17 #include "chrome/browser/supervised_user/supervised_users.h"
19 #include "components/keyed_service/core/keyed_service.h" 18 #include "components/keyed_service/core/keyed_service.h"
19 #include "components/prefs/pref_change_registrar.h"
20 20
21 class GoogleServiceAuthError; 21 class GoogleServiceAuthError;
22 class PrefService; 22 class PrefService;
23 class Profile; 23 class Profile;
24 class SupervisedUserRefreshTokenFetcher; 24 class SupervisedUserRefreshTokenFetcher;
25 class SupervisedUserRegistrationUtilityTest; 25 class SupervisedUserRegistrationUtilityTest;
26 class SupervisedUserSharedSettingsService; 26 class SupervisedUserSharedSettingsService;
27 27
28 namespace browser_sync { 28 namespace browser_sync {
29 class DeviceInfo; 29 class DeviceInfo;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 class ScopedTestingSupervisedUserRegistrationUtility { 99 class ScopedTestingSupervisedUserRegistrationUtility {
100 public: 100 public:
101 // Delegates ownership of the |instance| to SupervisedUserRegistrationUtility. 101 // Delegates ownership of the |instance| to SupervisedUserRegistrationUtility.
102 ScopedTestingSupervisedUserRegistrationUtility( 102 ScopedTestingSupervisedUserRegistrationUtility(
103 SupervisedUserRegistrationUtility* instance); 103 SupervisedUserRegistrationUtility* instance);
104 104
105 ~ScopedTestingSupervisedUserRegistrationUtility(); 105 ~ScopedTestingSupervisedUserRegistrationUtility();
106 }; 106 };
107 107
108 #endif // CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UT ILITY_H_ 108 #endif // CHROME_BROWSER_SUPERVISED_USER_LEGACY_SUPERVISED_USER_REGISTRATION_UT ILITY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698