OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PROFILES_PROFILE_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 class SupervisedUserURLFilter; | 46 class SupervisedUserURLFilter; |
47 | 47 |
48 namespace chromeos { | 48 namespace chromeos { |
49 class CertificateProvider; | 49 class CertificateProvider; |
50 } | 50 } |
51 | 51 |
52 namespace chrome_browser_net { | 52 namespace chrome_browser_net { |
53 class ResourcePrefetchPredictorObserver; | 53 class ResourcePrefetchPredictorObserver; |
54 } | 54 } |
55 | 55 |
| 56 namespace certificate_transparency { |
| 57 class TreeStateTracker; |
| 58 } |
| 59 |
56 namespace content_settings { | 60 namespace content_settings { |
57 class CookieSettings; | 61 class CookieSettings; |
58 } | 62 } |
59 | 63 |
60 namespace data_reduction_proxy { | 64 namespace data_reduction_proxy { |
61 class DataReductionProxyIOData; | 65 class DataReductionProxyIOData; |
62 } | 66 } |
63 | 67 |
64 namespace extensions { | 68 namespace extensions { |
65 class ExtensionThrottleManager; | 69 class ExtensionThrottleManager; |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 #endif | 596 #endif |
593 | 597 |
594 #if defined(ENABLE_EXTENSIONS) | 598 #if defined(ENABLE_EXTENSIONS) |
595 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. | 599 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. |
596 mutable std::unique_ptr<extensions::ExtensionThrottleManager> | 600 mutable std::unique_ptr<extensions::ExtensionThrottleManager> |
597 extension_throttle_manager_; | 601 extension_throttle_manager_; |
598 #endif | 602 #endif |
599 | 603 |
600 mutable DevToolsNetworkControllerHandle network_controller_handle_; | 604 mutable DevToolsNetworkControllerHandle network_controller_handle_; |
601 | 605 |
| 606 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
| 607 ct_tree_tracker_; |
| 608 mutable base::Closure ct_tree_tracker_unregistration_; |
| 609 |
602 const Profile::ProfileType profile_type_; | 610 const Profile::ProfileType profile_type_; |
603 | 611 |
604 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 612 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
605 }; | 613 }; |
606 | 614 |
607 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 615 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
OLD | NEW |