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

Unified Diff: content/common/net/url_fetcher_impl.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/common/net/url_fetcher_impl.h ('k') | content/common/net/url_fetcher_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/net/url_fetcher_impl.cc
diff --git a/content/common/net/url_fetcher_impl.cc b/content/common/net/url_fetcher_impl.cc
index 1a3ff605c95aa93ea68b9aa63c35327cbe5237cd..c0709f5d41b070f23266971cd98e615b1e0ac985 100644
--- a/content/common/net/url_fetcher_impl.cc
+++ b/content/common/net/url_fetcher_impl.cc
@@ -13,18 +13,18 @@
static content::URLFetcherFactory* g_factory = NULL;
// static
-content::URLFetcher* content::URLFetcher::Create(
+net::URLFetcher* content::URLFetcher::Create(
const GURL& url,
- RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
return new URLFetcherImpl(url, request_type, d);
}
// static
-content::URLFetcher* content::URLFetcher::Create(
+net::URLFetcher* content::URLFetcher::Create(
int id,
const GURL& url,
- RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) {
return g_factory ? g_factory->CreateURLFetcher(id, url, request_type, d) :
new URLFetcherImpl(url, request_type, d);
« no previous file with comments | « content/common/net/url_fetcher_impl.h ('k') | content/common/net/url_fetcher_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698