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..acfed1825b303fd4082d904102c37208fffb7d5b |
--- /dev/null |
+++ b/chrome/browser/net/proxy_service_factory.h |
@@ -0,0 +1,38 @@ |
+// 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 |
+ |
+class CommandLine; |
+class MessageLoop; |
+class PrefProxyConfigTracker; |
+ |
+namespace net { |
+ class NetLog; |
willchan no longer on Chromium
2011/02/16 20:02:27
Don't indent.
http://google-styleguide.googlecode.
battre
2011/02/21 17:27:57
Done.
|
+ class ProxyConfigService; |
+ class ProxyService; |
+ class URLRequestContext; |
+} // net |
+ |
+class ProxyServiceFactory { |
+ public: |
+ // Creates a ProxyConfigService that delivers the system preferences |
+ // (or the respective ChromeOS equivalent). |
+ // |io_message_loop| and |file_message_loop| may be NULL in ChromeOS. |
+ static net::ProxyConfigService* CreateProxyConfigService( |
+ MessageLoop* io_message_loop, |
+ MessageLoop* file_message_loop, |
+ 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); |
+}; |
willchan no longer on Chromium
2011/02/16 20:02:27
Use DISALLOW_IMPLICIT_CONSTRUCTORS to prevent this
battre
2011/02/21 17:27:57
Done.
|
+ |
+#endif // CHROME_BROWSER_NET_PROXY_SERVICE_FACTORY_H_ |