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 31fce488357004b7ca15c12576e4c3e0a77ab401..c600a2694a639d8b98d01a0ce53005e2de1b06d0 100644 |
--- a/content/public/common/url_fetcher_factory.h |
+++ b/content/public/common/url_fetcher_factory.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -8,6 +8,10 @@ |
#include "content/public/common/url_fetcher.h" |
+namespace net { |
+class URLFetcherDelegate; |
+} // namespace net |
+ |
namespace content { |
// URLFetcher::Create uses the currently registered Factory to create the |
@@ -18,7 +22,7 @@ class URLFetcherFactory { |
int id, |
const GURL& url, |
URLFetcher::RequestType request_type, |
- URLFetcherDelegate* d) = 0; |
+ net::URLFetcherDelegate* d) = 0; |
protected: |
virtual ~URLFetcherFactory() {} |