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

Unified Diff: content/test/test_url_fetcher_factory.cc

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix ChromeOS, address comments 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
« no previous file with comments | « content/test/test_url_fetcher_factory.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_url_fetcher_factory.cc
diff --git a/content/test/test_url_fetcher_factory.cc b/content/test/test_url_fetcher_factory.cc
index db44acf3033d5e77ea379028bb5ceb4c9834d0ca..d61b46d012f28001ec56e436fabc05b80604bc64 100644
--- a/content/test/test_url_fetcher_factory.cc
+++ b/content/test/test_url_fetcher_factory.cc
@@ -219,10 +219,10 @@ TestURLFetcherFactory::TestURLFetcherFactory()
TestURLFetcherFactory::~TestURLFetcherFactory() {}
-content::URLFetcher* TestURLFetcherFactory::CreateURLFetcher(
+net::URLFetcher* TestURLFetcherFactory::CreateURLFetcher(
int id,
const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
TestURLFetcher* fetcher = new TestURLFetcher(id, url, d);
fetchers_[id] = fetcher;
@@ -297,10 +297,10 @@ FakeURLFetcherFactory::FakeURLFetcherFactory(
FakeURLFetcherFactory::~FakeURLFetcherFactory() {}
-content::URLFetcher* FakeURLFetcherFactory::CreateURLFetcher(
+net::URLFetcher* FakeURLFetcherFactory::CreateURLFetcher(
int id,
const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
FakeResponseMap::const_iterator it = fake_responses_.find(url);
if (it == fake_responses_.end()) {
@@ -330,10 +330,10 @@ URLFetcherImplFactory::URLFetcherImplFactory() {}
URLFetcherImplFactory::~URLFetcherImplFactory() {}
-content::URLFetcher* URLFetcherImplFactory::CreateURLFetcher(
+net::URLFetcher* URLFetcherImplFactory::CreateURLFetcher(
int id,
const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
return new URLFetcherImpl(url, request_type, d);
}
« no previous file with comments | « content/test/test_url_fetcher_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698