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_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_ |
6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_ | 6 #define CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/strings/string16.h" | 21 #include "base/strings/string16.h" |
22 #include "build/build_config.h" | 22 #include "build/build_config.h" |
23 #include "chrome/browser/net/file_downloader.h" | 23 #include "chrome/browser/net/file_downloader.h" |
24 #include "chrome/browser/supervised_user/experimental/safe_search_url_reporter.h
" | 24 #include "chrome/browser/supervised_user/experimental/safe_search_url_reporter.h
" |
25 #include "chrome/browser/supervised_user/experimental/supervised_user_blacklist.
h" | 25 #include "chrome/browser/supervised_user/experimental/supervised_user_blacklist.
h" |
26 #include "chrome/browser/supervised_user/supervised_user_url_filter.h" | 26 #include "chrome/browser/supervised_user/supervised_user_url_filter.h" |
27 #include "chrome/browser/supervised_user/supervised_users.h" | 27 #include "chrome/browser/supervised_user/supervised_users.h" |
28 #include "chrome/browser/ui/browser_list_observer.h" | 28 #include "chrome/browser/ui/browser_list_observer.h" |
29 #include "components/keyed_service/core/keyed_service.h" | 29 #include "components/keyed_service/core/keyed_service.h" |
30 #include "components/prefs/pref_change_registrar.h" | 30 #include "components/prefs/pref_change_registrar.h" |
31 #include "components/sync_driver/sync_service_observer.h" | 31 #include "components/sync/driver/sync_service_observer.h" |
32 #include "components/sync_driver/sync_type_preference_provider.h" | 32 #include "components/sync/driver/sync_type_preference_provider.h" |
33 #include "net/url_request/url_request_context_getter.h" | 33 #include "net/url_request/url_request_context_getter.h" |
34 | 34 |
35 #if defined(ENABLE_EXTENSIONS) | 35 #if defined(ENABLE_EXTENSIONS) |
36 #include "extensions/browser/extension_registry_observer.h" | 36 #include "extensions/browser/extension_registry_observer.h" |
37 #include "extensions/browser/management_policy.h" | 37 #include "extensions/browser/management_policy.h" |
38 #endif | 38 #endif |
39 | 39 |
40 class Browser; | 40 class Browser; |
41 class GoogleServiceAuthError; | 41 class GoogleServiceAuthError; |
42 class PermissionRequestCreator; | 42 class PermissionRequestCreator; |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 | 470 |
471 base::ObserverList<SupervisedUserServiceObserver> observer_list_; | 471 base::ObserverList<SupervisedUserServiceObserver> observer_list_; |
472 | 472 |
473 // Prevents Sync from running until configuration is complete. | 473 // Prevents Sync from running until configuration is complete. |
474 std::unique_ptr<sync_driver::SyncSetupInProgressHandle> sync_blocker_; | 474 std::unique_ptr<sync_driver::SyncSetupInProgressHandle> sync_blocker_; |
475 | 475 |
476 base::WeakPtrFactory<SupervisedUserService> weak_ptr_factory_; | 476 base::WeakPtrFactory<SupervisedUserService> weak_ptr_factory_; |
477 }; | 477 }; |
478 | 478 |
479 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_ | 479 #endif // CHROME_BROWSER_SUPERVISED_USER_SUPERVISED_USER_SERVICE_H_ |
OLD | NEW |