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_SHARED_SETTINGS_SERVICE_H
_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SHARED_SETTINGS_SERVICE_H
_ |
6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SHARED_SETTINGS_SERVICE_H
_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SHARED_SETTINGS_SERVICE_H
_ |
7 | 7 |
| 8 #include <string> |
| 9 |
8 #include "base/callback.h" | 10 #include "base/callback.h" |
9 #include "base/callback_list.h" | 11 #include "base/callback_list.h" |
10 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/supervised_user/supervised_users.h" | 13 #include "chrome/browser/supervised_user/supervised_users.h" |
12 #include "components/keyed_service/core/keyed_service.h" | 14 #include "components/keyed_service/core/keyed_service.h" |
13 #include "sync/api/syncable_service.h" | 15 #include "sync/api/syncable_service.h" |
14 | 16 |
15 class PrefService; | 17 class PrefService; |
16 | 18 |
17 namespace base { | 19 namespace base { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 private: | 107 private: |
106 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_; | 108 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_; |
107 scoped_ptr<syncer::SyncErrorFactory> error_handler_; | 109 scoped_ptr<syncer::SyncErrorFactory> error_handler_; |
108 | 110 |
109 ChangeCallbackList callbacks_; | 111 ChangeCallbackList callbacks_; |
110 | 112 |
111 PrefService* prefs_; | 113 PrefService* prefs_; |
112 }; | 114 }; |
113 | 115 |
114 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SHARED_SETTINGS_SERVIC
E_H_ | 116 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SHARED_SETTINGS_SERVIC
E_H_ |
OLD | NEW |