| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 class SupervisedUserURLFilter; | 47 class SupervisedUserURLFilter; |
| 48 | 48 |
| 49 namespace chromeos { | 49 namespace chromeos { |
| 50 class CertificateProvider; | 50 class CertificateProvider; |
| 51 } | 51 } |
| 52 | 52 |
| 53 namespace chrome_browser_net { | 53 namespace chrome_browser_net { |
| 54 class ResourcePrefetchPredictorObserver; | 54 class ResourcePrefetchPredictorObserver; |
| 55 } | 55 } |
| 56 | 56 |
| 57 namespace certificate_transparency { |
| 58 class TreeStateTracker; |
| 59 } |
| 60 |
| 57 namespace content_settings { | 61 namespace content_settings { |
| 58 class CookieSettings; | 62 class CookieSettings; |
| 59 } | 63 } |
| 60 | 64 |
| 61 namespace data_reduction_proxy { | 65 namespace data_reduction_proxy { |
| 62 class DataReductionProxyIOData; | 66 class DataReductionProxyIOData; |
| 63 } | 67 } |
| 64 | 68 |
| 65 namespace extensions { | 69 namespace extensions { |
| 66 class ExtensionThrottleManager; | 70 class ExtensionThrottleManager; |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 #endif | 602 #endif |
| 599 | 603 |
| 600 #if defined(ENABLE_EXTENSIONS) | 604 #if defined(ENABLE_EXTENSIONS) |
| 601 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. | 605 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. |
| 602 mutable std::unique_ptr<extensions::ExtensionThrottleManager> | 606 mutable std::unique_ptr<extensions::ExtensionThrottleManager> |
| 603 extension_throttle_manager_; | 607 extension_throttle_manager_; |
| 604 #endif | 608 #endif |
| 605 | 609 |
| 606 mutable DevToolsNetworkControllerHandle network_controller_handle_; | 610 mutable DevToolsNetworkControllerHandle network_controller_handle_; |
| 607 | 611 |
| 612 mutable std::unique_ptr<certificate_transparency::TreeStateTracker> |
| 613 ct_tree_tracker_; |
| 614 mutable base::Closure ct_tree_tracker_unregistration_; |
| 615 |
| 608 const Profile::ProfileType profile_type_; | 616 const Profile::ProfileType profile_type_; |
| 609 | 617 |
| 610 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 618 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 611 }; | 619 }; |
| 612 | 620 |
| 613 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 621 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |