Index: net/proxy/mock_proxy_script_fetcher.h |
diff --git a/net/proxy/mock_proxy_script_fetcher.h b/net/proxy/mock_proxy_script_fetcher.h |
index 9ddd78067fe204bc3713e98c1c17752c0e8bc79f..7bfeda90561b24091e3aa9b983c782b16ddd7c02 100644 |
--- a/net/proxy/mock_proxy_script_fetcher.h |
+++ b/net/proxy/mock_proxy_script_fetcher.h |
@@ -25,7 +25,7 @@ class MockProxyScriptFetcher : public ProxyScriptFetcher { |
// ProxyScriptFetcher implementation. |
virtual int Fetch(const GURL& url, |
string16* text, |
- OldCompletionCallback* callback) OVERRIDE; |
+ const net::CompletionCallback& callback) OVERRIDE; |
James Hawkins
2011/12/17 23:50:55
Remove net:: here and below.
James Hawkins
2011/12/18 00:05:47
Done.
|
virtual void Cancel() OVERRIDE; |
virtual URLRequestContext* GetRequestContext() const OVERRIDE; |
@@ -35,7 +35,7 @@ class MockProxyScriptFetcher : public ProxyScriptFetcher { |
private: |
GURL pending_request_url_; |
- OldCompletionCallback* pending_request_callback_; |
+ net::CompletionCallback pending_request_callback_; |
string16* pending_request_text_; |
}; |