| Index: chrome/browser/safe_browsing/malware_details_cache.h
|
| diff --git a/chrome/browser/safe_browsing/malware_details_cache.h b/chrome/browser/safe_browsing/malware_details_cache.h
|
| index eaaa3c5fb377780f6f8b954f8377d35dca684e2c..291d0f90b63a37a40c7e9d07992942ae9c983fe8 100644
|
| --- a/chrome/browser/safe_browsing/malware_details_cache.h
|
| +++ b/chrome/browser/safe_browsing/malware_details_cache.h
|
| @@ -17,10 +17,11 @@
|
| #include "base/memory/linked_ptr.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "chrome/browser/safe_browsing/report.pb.h"
|
| -#include "content/public/common/url_fetcher_delegate.h"
|
| #include "net/base/completion_callback.h"
|
| +#include "net/url_request/url_fetcher_delegate.h"
|
|
|
| namespace net {
|
| +class URLFetcher;
|
| class URLRequestContext;
|
| }
|
|
|
| @@ -34,7 +35,7 @@ typedef base::hash_map<
|
|
|
| class MalwareDetailsCacheCollector
|
| : public base::RefCountedThreadSafe<MalwareDetailsCacheCollector>,
|
| - public content::URLFetcherDelegate {
|
| + public net::URLFetcherDelegate {
|
|
|
| public:
|
| MalwareDetailsCacheCollector();
|
| @@ -82,7 +83,7 @@ class MalwareDetailsCacheCollector
|
| scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
|
|
|
| // The current URLFetcher.
|
| - scoped_ptr<content::URLFetcher> current_fetch_;
|
| + scoped_ptr<net::URLFetcher> current_fetch_;
|
|
|
| // Returns the resource from resources_ that corresponds to |url|
|
| safe_browsing::ClientMalwareReportRequest::Resource* GetResource(
|
|
|