diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 01:39:58 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-13 01:39:58 +0000 |
commit | 0cf348bee91869f8ec4b17995fc65bfb02c0755d (patch) | |
tree | 2e4b045102485224511bdb794ab4ed7024d1a94f /net/proxy/single_threaded_proxy_resolver.h | |
parent | ec2191fc123ffe5208995a4f4bd3f4e350590a44 (diff) | |
download | chromium_src-0cf348bee91869f8ec4b17995fc65bfb02c0755d.zip chromium_src-0cf348bee91869f8ec4b17995fc65bfb02c0755d.tar.gz chromium_src-0cf348bee91869f8ec4b17995fc65bfb02c0755d.tar.bz2 |
Add the ability to purge memory to the ProxyResolver.
BUG=23400
TEST=none
Review URL: http://codereview.chromium.org/272018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28769 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/single_threaded_proxy_resolver.h')
-rw-r--r-- | net/proxy/single_threaded_proxy_resolver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/single_threaded_proxy_resolver.h b/net/proxy/single_threaded_proxy_resolver.h index 46c95a2..3d43309 100644 --- a/net/proxy/single_threaded_proxy_resolver.h +++ b/net/proxy/single_threaded_proxy_resolver.h @@ -23,7 +23,6 @@ namespace net { // are serviced in FIFO order. class SingleThreadedProxyResolver : public ProxyResolver { public: - // |resolver| is a synchronous ProxyResolver implementation. It doesn't // have to be thread-safe, since it is run on exactly one thread. The // constructor takes ownership of |resolver|. @@ -39,6 +38,7 @@ class SingleThreadedProxyResolver : public ProxyResolver { LoadLog* load_log); virtual void CancelRequest(RequestHandle request); virtual void CancelSetPacScript(); + virtual void PurgeMemory(); protected: // The wrapped (synchronous) ProxyResolver. |