Index: chromecast/browser/url_request_context_factory.h |
diff --git a/chromecast/browser/url_request_context_factory.h b/chromecast/browser/url_request_context_factory.h |
index 1b2396eb37cf4447c0bc5f21963a2339bb3dc47b..b18f31c1e7f87f2413b71db28c4ab1584528072f 100644 |
--- a/chromecast/browser/url_request_context_factory.h |
+++ b/chromecast/browser/url_request_context_factory.h |
@@ -5,10 +5,14 @@ |
#ifndef CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
#define CHROMECAST_BROWSER_URL_REQUEST_CONTEXT_FACTORY_H_ |
+#include <memory> |
+ |
#include "content/public/browser/browser_context.h" |
#include "content/public/browser/content_browser_client.h" |
#include "net/http/http_network_session.h" |
+class PrefProxyConfigTracker; |
+ |
namespace net { |
class CookieStore; |
class HttpTransactionFactory; |
@@ -124,6 +128,8 @@ class URLRequestContextFactory { |
bool media_dependencies_initialized_; |
std::unique_ptr<net::HttpTransactionFactory> media_transaction_factory_; |
+ std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_impl_; |
+ |
// Determines if QUIC is enabled for a URLContextGetter when it is created. |
// QUIC can be disabled at runtime by calling DisableQuic() above. |
// Only accessed on content::BrowserThread::IO thread. |