diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 00:33:17 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 00:33:17 +0000 |
commit | f2c971f82ea27b15c674e1f9cbf3513b92636e86 (patch) | |
tree | a534dca72436f71195f1578200f0eb456b39f50d /net/proxy/proxy_resolver.h | |
parent | eb191d643e576ccba8b51179c6fdf751f92eb21a (diff) | |
download | chromium_src-f2c971f82ea27b15c674e1f9cbf3513b92636e86.zip chromium_src-f2c971f82ea27b15c674e1f9cbf3513b92636e86.tar.gz chromium_src-f2c971f82ea27b15c674e1f9cbf3513b92636e86.tar.bz2 |
Add new text for indicating we are resolving hosts during proxy resolution.
Required adding a new GetLoadStateThreadSafe() virtual method to the ProxyResolver interface. ProxyResolverV8 uses this.
BUG=59308
TEST=none
Review URL: http://codereview.chromium.org/8373014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108950 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_resolver.h')
-rw-r--r-- | net/proxy/proxy_resolver.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/proxy/proxy_resolver.h b/net/proxy/proxy_resolver.h index 20c903d..3bdfd28 100644 --- a/net/proxy/proxy_resolver.h +++ b/net/proxy/proxy_resolver.h @@ -11,6 +11,7 @@ #include "base/string16.h" #include "googleurl/src/gurl.h" #include "net/base/completion_callback.h" +#include "net/base/load_states.h" #include "net/base/net_export.h" #include "net/proxy/proxy_resolver_script_data.h" @@ -49,6 +50,12 @@ class NET_EXPORT_PRIVATE ProxyResolver { // Cancels |request|. virtual void CancelRequest(RequestHandle request) = 0; + // Gets the LoadState for |request|. + virtual LoadState GetLoadState(RequestHandle request) const = 0; + + // Gets the LoadState for |request|. May be called from another thread. + virtual LoadState GetLoadStateThreadSafe(RequestHandle request) const = 0; + // The PAC script backend can be specified to the ProxyResolver either via // URL, or via the javascript text itself. If |expects_pac_bytes| is true, // then the ProxyResolverScriptData passed to SetPacScript() should |