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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 #endif | 592 #endif |
593 | 593 |
594 #if defined(ENABLE_EXTENSIONS) | 594 #if defined(ENABLE_EXTENSIONS) |
595 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. | 595 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. |
596 mutable std::unique_ptr<extensions::ExtensionThrottleManager> | 596 mutable std::unique_ptr<extensions::ExtensionThrottleManager> |
597 extension_throttle_manager_; | 597 extension_throttle_manager_; |
598 #endif | 598 #endif |
599 | 599 |
600 mutable DevToolsNetworkControllerHandle network_controller_handle_; | 600 mutable DevToolsNetworkControllerHandle network_controller_handle_; |
601 | 601 |
602 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | |
603 bool initialized_on_UI_thread_; | |
604 | |
605 const Profile::ProfileType profile_type_; | 602 const Profile::ProfileType profile_type_; |
606 | 603 |
607 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 604 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
608 }; | 605 }; |
609 | 606 |
610 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 607 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
OLD | NEW |