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: |