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

Unified Diff: chrome/browser/net/proxy_service_factory.h

Issue 6292017: Extended: Add "system" URLRequestContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Chrome OS compile fix Created 9 years, 9 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
Index: chrome/browser/net/proxy_service_factory.h
diff --git a/chrome/browser/net/proxy_service_factory.h b/chrome/browser/net/proxy_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..076ef810d0dfbdd2b42e6d1bd00f76c73c4ccbaa
--- /dev/null
+++ b/chrome/browser/net/proxy_service_factory.h
@@ -0,0 +1,40 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_NET_PROXY_SERVICE_FACTORY_H_
+#define CHROME_BROWSER_NET_PROXY_SERVICE_FACTORY_H_
+#pragma once
+
+#include "base/basictypes.h"
+
+class CommandLine;
+class MessageLoop;
Mattias Nissler (ping if slow) 2011/03/09 11:04:56 not needed.
battre 2011/03/09 19:24:07 Done.
+class PrefProxyConfigTracker;
+
+namespace net {
+class NetLog;
+class ProxyConfigService;
+class ProxyService;
+class URLRequestContext;
+} // net
+
+class ProxyServiceFactory {
+ public:
+ // Creates a ProxyConfigService that delivers the system preferences
+ // (or the respective ChromeOS equivalent).
+ static net::ProxyConfigService* CreateProxyConfigService(
+ PrefProxyConfigTracker* proxy_config_tracker);
+
+ // Create a proxy service according to the options on command line.
+ static net::ProxyService* CreateProxyService(
+ net::NetLog* net_log,
+ net::URLRequestContext* context,
+ net::ProxyConfigService* proxy_config_service,
+ const CommandLine& command_line);
+
+ private:
+ DISALLOW_IMPLICIT_CONSTRUCTORS(ProxyServiceFactory);
+};
+
+#endif // CHROME_BROWSER_NET_PROXY_SERVICE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698