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

Unified Diff: content/public/common/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 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/public/common/url_fetcher.h ('k') | content/test/test_url_fetcher_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/url_fetcher_factory.h
diff --git a/content/public/common/url_fetcher_factory.h b/content/public/common/url_fetcher_factory.h
index c600a2694a639d8b98d01a0ce53005e2de1b06d0..5e8b8902676b829451e15741e1f2a5af4459f752 100644
--- a/content/public/common/url_fetcher_factory.h
+++ b/content/public/common/url_fetcher_factory.h
@@ -6,7 +6,7 @@
#define CONTENT_PUBLIC_COMMON_URL_FETCHER_FACTORY_H_
#pragma once
-#include "content/public/common/url_fetcher.h"
+#include "net/url_request/url_fetcher.h"
namespace net {
class URLFetcherDelegate;
@@ -18,10 +18,10 @@ namespace content {
// URLFetcher. Factory is intended for testing.
class URLFetcherFactory {
public:
- virtual URLFetcher* CreateURLFetcher(
+ virtual net::URLFetcher* CreateURLFetcher(
int id,
const GURL& url,
- URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d) = 0;
protected:
« no previous file with comments | « content/public/common/url_fetcher.h ('k') | content/test/test_url_fetcher_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698