diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 17:24:26 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 17:24:26 +0000 |
commit | c4c1b4834a125836e813a8297e2199073977d671 (patch) | |
tree | f51c1d124a7749a60e1cd625f71a0be11c15e556 /net/proxy/multi_threaded_proxy_resolver.cc | |
parent | 800df5fae2689382fd79163979bd701869164c67 (diff) | |
download | chromium_src-c4c1b4834a125836e813a8297e2199073977d671.zip chromium_src-c4c1b4834a125836e813a8297e2199073977d671.tar.gz chromium_src-c4c1b4834a125836e813a8297e2199073977d671.tar.bz2 |
Add OVERRIDE throughout net/proxy/*
In the process I discovered 2 dummy virtual overrides of NetworkDelegate interface. (Interface it was trying to overwrite no longer exists).
Review URL: http://codereview.chromium.org/7484010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/multi_threaded_proxy_resolver.cc')
-rw-r--r-- | net/proxy/multi_threaded_proxy_resolver.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/proxy/multi_threaded_proxy_resolver.cc b/net/proxy/multi_threaded_proxy_resolver.cc index 1618b2b..9db392b 100644 --- a/net/proxy/multi_threaded_proxy_resolver.cc +++ b/net/proxy/multi_threaded_proxy_resolver.cc @@ -188,7 +188,7 @@ class MultiThreadedProxyResolver::SetPacScriptJob } // Runs on the worker thread. - virtual void Run(scoped_refptr<base::MessageLoopProxy> origin_loop) { + virtual void Run(scoped_refptr<base::MessageLoopProxy> origin_loop) OVERRIDE { ProxyResolver* resolver = executor()->resolver(); int rv = resolver->SetPacScript(script_data_, NULL); @@ -232,13 +232,13 @@ class MultiThreadedProxyResolver::GetProxyForURLJob BoundNetLog* net_log() { return &net_log_; } - virtual void WaitingForThread() { + virtual void WaitingForThread() OVERRIDE { was_waiting_for_thread_ = true; net_log_.BeginEvent( NetLog::TYPE_WAITING_FOR_PROXY_RESOLVER_THREAD, NULL); } - virtual void FinishedWaitingForThread() { + virtual void FinishedWaitingForThread() OVERRIDE { DCHECK(executor()); if (was_waiting_for_thread_) { @@ -253,7 +253,7 @@ class MultiThreadedProxyResolver::GetProxyForURLJob } // Runs on the worker thread. - virtual void Run(scoped_refptr<base::MessageLoopProxy> origin_loop) { + virtual void Run(scoped_refptr<base::MessageLoopProxy> origin_loop) OVERRIDE { ProxyResolver* resolver = executor()->resolver(); int rv = resolver->GetProxyForURL( url_, &results_buf_, NULL, NULL, net_log_); |