diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 16:57:06 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-10 16:57:06 +0000 |
commit | 5d456c5cf9732f4bc7556c86ad278c25333913c1 (patch) | |
tree | 0196645deef8338c13aadfc4f8b170f952958f68 /net/proxy/dhcp_proxy_script_fetcher.h | |
parent | 55c43f3e365e664e65d89086ddea07d94066ff19 (diff) | |
download | chromium_src-5d456c5cf9732f4bc7556c86ad278c25333913c1.zip chromium_src-5d456c5cf9732f4bc7556c86ad278c25333913c1.tar.gz chromium_src-5d456c5cf9732f4bc7556c86ad278c25333913c1.tar.bz2 |
Remove unnecessary references to URLRequestContext.
The actual URLRequestContext used by the Chromium embedder here is the "proxy
script fetcher" URLRequestContext. It is owned by the browser process's
IOThread. Therefore, there's no need to refcount it within objects owned by
the ProxyService of that URLRequestContext.
BUG=58859
TEST=none
Review URL: http://codereview.chromium.org/10024019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131562 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/dhcp_proxy_script_fetcher.h')
-rw-r--r-- | net/proxy/dhcp_proxy_script_fetcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/proxy/dhcp_proxy_script_fetcher.h b/net/proxy/dhcp_proxy_script_fetcher.h index 101ddff..df67662 100644 --- a/net/proxy/dhcp_proxy_script_fetcher.h +++ b/net/proxy/dhcp_proxy_script_fetcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// 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. @@ -9,10 +9,10 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" #include "base/string16.h" +#include "googleurl/src/gurl.h" #include "net/base/completion_callback.h" #include "net/base/net_export.h" #include "net/proxy/proxy_script_fetcher.h" -#include "net/url_request/url_request_context.h" namespace net { |