Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: net/proxy/mock_proxy_script_fetcher.h

Issue 6362186595172352: net: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and revert nss_ocsp.cc changes Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/proxy/mock_proxy_resolver.h ('k') | net/proxy/multi_threaded_proxy_resolver_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_ 5 #ifndef NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
6 #define NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_ 6 #define NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "googleurl/src/gurl.h"
10 #include "net/proxy/proxy_script_fetcher.h" 9 #include "net/proxy/proxy_script_fetcher.h"
10 #include "url/gurl.h"
11 11
12 #include <string> 12 #include <string>
13 13
14 namespace net { 14 namespace net {
15 15
16 class URLRequestContext; 16 class URLRequestContext;
17 17
18 // A mock ProxyScriptFetcher. No result will be returned to the fetch client 18 // A mock ProxyScriptFetcher. No result will be returned to the fetch client
19 // until we call NotifyFetchCompletion() to set the results. 19 // until we call NotifyFetchCompletion() to set the results.
20 class MockProxyScriptFetcher : public ProxyScriptFetcher { 20 class MockProxyScriptFetcher : public ProxyScriptFetcher {
(...skipping 18 matching lines...) Expand all
39 private: 39 private:
40 GURL pending_request_url_; 40 GURL pending_request_url_;
41 CompletionCallback pending_request_callback_; 41 CompletionCallback pending_request_callback_;
42 base::string16* pending_request_text_; 42 base::string16* pending_request_text_;
43 bool waiting_for_fetch_; 43 bool waiting_for_fetch_;
44 }; 44 };
45 45
46 } // namespace net 46 } // namespace net
47 47
48 #endif // NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_ 48 #endif // NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
OLDNEW
« no previous file with comments | « net/proxy/mock_proxy_resolver.h ('k') | net/proxy/multi_threaded_proxy_resolver_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698