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

Unified Diff: net/proxy/proxy_service_v8.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « net/proxy/proxy_service_v8.h ('k') | net/quic/congestion_control/cubic.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_service_v8.cc
diff --git a/net/proxy/proxy_service_v8.cc b/net/proxy/proxy_service_v8.cc
deleted file mode 100644
index 945719a1647fb65ab7566995ce8c0869802251d5..0000000000000000000000000000000000000000
--- a/net/proxy/proxy_service_v8.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2012 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.
-
-#include "net/proxy/proxy_service_v8.h"
-
-#include "base/logging.h"
-#include "net/proxy/network_delegate_error_observer.h"
-#include "net/proxy/proxy_resolver.h"
-#include "net/proxy/proxy_resolver_v8_tracing.h"
-#include "net/proxy/proxy_service.h"
-
-namespace net {
-
-// static
-ProxyService* CreateProxyServiceUsingV8ProxyResolver(
- ProxyConfigService* proxy_config_service,
- ProxyScriptFetcher* proxy_script_fetcher,
- DhcpProxyScriptFetcher* dhcp_proxy_script_fetcher,
- HostResolver* host_resolver,
- NetLog* net_log,
- NetworkDelegate* network_delegate) {
- DCHECK(proxy_config_service);
- DCHECK(proxy_script_fetcher);
- DCHECK(dhcp_proxy_script_fetcher);
- DCHECK(host_resolver);
-
- ProxyResolverErrorObserver* error_observer = new NetworkDelegateErrorObserver(
- network_delegate, base::MessageLoopProxy::current().get());
-
- ProxyResolver* proxy_resolver =
- new ProxyResolverV8Tracing(host_resolver, error_observer, net_log);
-
- ProxyService* proxy_service =
- new ProxyService(proxy_config_service, proxy_resolver, net_log);
-
- // Configure fetchers to use for PAC script downloads and auto-detect.
- proxy_service->SetProxyScriptFetchers(proxy_script_fetcher,
- dhcp_proxy_script_fetcher);
-
- return proxy_service;
-}
-
-} // namespace net
« no previous file with comments | « net/proxy/proxy_service_v8.h ('k') | net/quic/congestion_control/cubic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698