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

Unified Diff: chromecast/browser/url_request_context_factory.h

Issue 2647323010: [Chromecast] Add proxy server support to chromecast (Closed)
Patch Set: Fixing test break. Created 3 years, 10 months 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 | « chromecast/browser/cast_browser_main_parts.cc ('k') | chromecast/browser/url_request_context_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « chromecast/browser/cast_browser_main_parts.cc ('k') | chromecast/browser/url_request_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698