| OLD | NEW |
| 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_SUPERVISED_USER_SETTINGS_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SETTINGS_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SETTINGS_SERVICE_H_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SETTINGS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/callback_list.h" | 12 #include "base/callback_list.h" |
| 13 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/prefs/pref_store.h" | 16 #include "base/prefs/pref_store.h" |
| 16 #include "base/values.h" | 17 #include "base/values.h" |
| 17 #include "chrome/browser/supervised_user/supervised_users.h" | 18 #include "chrome/browser/supervised_user/supervised_users.h" |
| 18 #include "components/keyed_service/core/keyed_service.h" | 19 #include "components/keyed_service/core/keyed_service.h" |
| 19 #include "sync/api/syncable_service.h" | 20 #include "sync/api/syncable_service.h" |
| 20 | 21 |
| 21 class PersistentPrefStore; | 22 class PersistentPrefStore; |
| 22 class Profile; | 23 class Profile; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 173 |
| 173 SettingsCallbackList callback_list_; | 174 SettingsCallbackList callback_list_; |
| 174 | 175 |
| 175 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_; | 176 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_; |
| 176 scoped_ptr<syncer::SyncErrorFactory> error_handler_; | 177 scoped_ptr<syncer::SyncErrorFactory> error_handler_; |
| 177 | 178 |
| 178 DISALLOW_COPY_AND_ASSIGN(SupervisedUserSettingsService); | 179 DISALLOW_COPY_AND_ASSIGN(SupervisedUserSettingsService); |
| 179 }; | 180 }; |
| 180 | 181 |
| 181 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SETTINGS_SERVICE_H_ | 182 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SETTINGS_SERVICE_H_ |
| OLD | NEW |