Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2600)

Unified Diff: chrome/browser/profiles/profile_io_data.h

Issue 11316320: Replace ProfileIOData::http_server_properties_manager_ with http_server_properties_. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responded to willchan's comments in #2 Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_io_data.h
diff --git a/chrome/browser/profiles/profile_io_data.h b/chrome/browser/profiles/profile_io_data.h
index 255a26aab504aa005f4234b829202d248e5db861..0fa35ba64e95cf5ff7ea86bcf123549be1ab9a3c 100644
--- a/chrome/browser/profiles/profile_io_data.h
+++ b/chrome/browser/profiles/profile_io_data.h
@@ -35,13 +35,13 @@ class TransportSecurityPersister;
namespace chrome_browser_net {
class LoadTimeStats;
-class HttpServerPropertiesManager;
class ResourcePrefetchPredictorObserver;
}
namespace net {
class CookieStore;
class FraudulentCertificateReporter;
+class HttpServerProperties;
class HttpTransactionFactory;
class ServerBoundCertService;
class ProxyConfigService;
@@ -143,9 +143,6 @@ class ProfileIOData {
return transport_security_state_.get();
}
- chrome_browser_net::HttpServerPropertiesManager*
- http_server_properties_manager() const;
-
bool is_incognito() const {
return is_incognito_;
}
@@ -284,8 +281,10 @@ class ProfileIOData {
return proxy_service_.get();
}
- void set_http_server_properties_manager(
- chrome_browser_net::HttpServerPropertiesManager* manager) const;
+ net::HttpServerProperties* http_server_properties() const;
+
+ void set_http_server_properties(
+ net::HttpServerProperties* http_server_properties) const;
ChromeURLRequestContext* main_request_context() const {
return main_request_context_.get();
@@ -439,8 +438,8 @@ class ProfileIOData {
fraudulent_certificate_reporter_;
mutable scoped_ptr<net::ProxyService> proxy_service_;
mutable scoped_ptr<net::TransportSecurityState> transport_security_state_;
- mutable scoped_ptr<chrome_browser_net::HttpServerPropertiesManager>
- http_server_properties_manager_;
+ mutable scoped_ptr<net::HttpServerProperties>
+ http_server_properties_;
#if defined(ENABLE_NOTIFICATIONS)
mutable DesktopNotificationService* notification_service_;
« no previous file with comments | « chrome/browser/profiles/profile_impl_io_data.cc ('k') | chrome/browser/profiles/profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698