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

Unified Diff: chrome/common/net/gaia/mock_url_fetcher_factory.h

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indent and typo Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/net/gaia/mock_url_fetcher_factory.h
diff --git a/chrome/common/net/gaia/mock_url_fetcher_factory.h b/chrome/common/net/gaia/mock_url_fetcher_factory.h
index f1bc80c0ec17d25b2f38d0bf1c617dda6336e6ec..ec403f597478c9837ce8236784e9bd3c9e13493f 100644
--- a/chrome/common/net/gaia/mock_url_fetcher_factory.h
+++ b/chrome/common/net/gaia/mock_url_fetcher_factory.h
@@ -21,7 +21,7 @@ class MockFetcher : public TestURLFetcher {
MockFetcher(bool success,
const GURL& url,
const std::string& results,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
MockFetcher(const GURL& url,
@@ -29,7 +29,7 @@ class MockFetcher : public TestURLFetcher {
int response_code,
const net::ResponseCookies& cookies,
const std::string& results,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
virtual ~MockFetcher();
@@ -49,10 +49,10 @@ class MockURLFetcherFactory : public content::URLFetcherFactory,
success_(true) {
}
~MockURLFetcherFactory() {}
- content::URLFetcher* CreateURLFetcher(
+ net::URLFetcher* CreateURLFetcher(
int id,
const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) OVERRIDE {
return new T(success_, url, results_, request_type, d);
}

Powered by Google App Engine
This is Rietveld 408576698