| 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 10 matching lines...) Expand all Loading... |
| 21 #include "build/build_config.h" | 21 #include "build/build_config.h" |
| 22 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" | 22 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 23 #include "chrome/browser/devtools/devtools_network_controller_handle.h" | 23 #include "chrome/browser/devtools/devtools_network_controller_handle.h" |
| 24 #include "chrome/browser/io_thread.h" | 24 #include "chrome/browser/io_thread.h" |
| 25 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
| 26 #include "chrome/browser/profiles/storage_partition_descriptor.h" | 26 #include "chrome/browser/profiles/storage_partition_descriptor.h" |
| 27 #include "components/content_settings/core/common/content_settings_types.h" | 27 #include "components/content_settings/core/common/content_settings_types.h" |
| 28 #include "components/prefs/pref_member.h" | 28 #include "components/prefs/pref_member.h" |
| 29 #include "content/public/browser/content_browser_client.h" | 29 #include "content/public/browser/content_browser_client.h" |
| 30 #include "content/public/browser/resource_context.h" | 30 #include "content/public/browser/resource_context.h" |
| 31 #include "net/cert/ct_observer.h" |
| 31 #include "net/cert/ct_verifier.h" | 32 #include "net/cert/ct_verifier.h" |
| 32 #include "net/cookies/cookie_monster.h" | 33 #include "net/cookies/cookie_monster.h" |
| 33 #include "net/http/http_cache.h" | 34 #include "net/http/http_cache.h" |
| 34 #include "net/http/http_network_session.h" | 35 #include "net/http/http_network_session.h" |
| 35 #include "net/url_request/url_request_context.h" | 36 #include "net/url_request/url_request_context.h" |
| 36 #include "net/url_request/url_request_interceptor.h" | 37 #include "net/url_request/url_request_interceptor.h" |
| 37 #include "net/url_request/url_request_job_factory.h" | 38 #include "net/url_request/url_request_job_factory.h" |
| 38 | 39 |
| 39 class ChromeHttpUserAgentSettings; | 40 class ChromeHttpUserAgentSettings; |
| 40 class ChromeNetworkDelegate; | 41 class ChromeNetworkDelegate; |
| (...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 #endif | 586 #endif |
| 586 | 587 |
| 587 #if defined(ENABLE_EXTENSIONS) | 588 #if defined(ENABLE_EXTENSIONS) |
| 588 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. | 589 // Is NULL if switches::kDisableExtensionsHttpThrottling is on. |
| 589 mutable scoped_ptr<extensions::ExtensionThrottleManager> | 590 mutable scoped_ptr<extensions::ExtensionThrottleManager> |
| 590 extension_throttle_manager_; | 591 extension_throttle_manager_; |
| 591 #endif | 592 #endif |
| 592 | 593 |
| 593 mutable DevToolsNetworkControllerHandle network_controller_handle_; | 594 mutable DevToolsNetworkControllerHandle network_controller_handle_; |
| 594 | 595 |
| 596 // Must be deleted before the URLRequestContexts |
| 597 mutable scoped_ptr<net::ct::CTObserver> cert_transparency_observer_; |
| 598 |
| 599 mutable base::Closure cert_transparency_observer_unregistration_; |
| 600 |
| 595 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | 601 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. |
| 596 bool initialized_on_UI_thread_; | 602 bool initialized_on_UI_thread_; |
| 597 | 603 |
| 598 const Profile::ProfileType profile_type_; | 604 const Profile::ProfileType profile_type_; |
| 599 | 605 |
| 600 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); | 606 DISALLOW_COPY_AND_ASSIGN(ProfileIOData); |
| 601 }; | 607 }; |
| 602 | 608 |
| 603 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ | 609 #endif // CHROME_BROWSER_PROFILES_PROFILE_IO_DATA_H_ |
| OLD | NEW |