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

Unified Diff: content/common/net/url_fetcher_core.h

Issue 10412050: Change most content::URLFetcher references to net::URLFetcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix indent and typo 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
Index: content/common/net/url_fetcher_core.h
diff --git a/content/common/net/url_fetcher_core.h b/content/common/net/url_fetcher_core.h
index 9694a83dbe78428e7c5b54ceb82807be47669381..211dbe12947bbf461efd476e753770d9d8d23e38 100644
--- a/content/common/net/url_fetcher_core.h
+++ b/content/common/net/url_fetcher_core.h
@@ -45,9 +45,9 @@ class URLFetcherCore
: public base::RefCountedThreadSafe<URLFetcherCore>,
public net::URLRequest::Delegate {
public:
- URLFetcherCore(URLFetcher* fetcher,
+ URLFetcherCore(net::URLFetcher* fetcher,
const GURL& original_url,
- URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
net::URLFetcherDelegate* d);
// Starts the load. It's important that this not happen in the constructor
@@ -294,10 +294,10 @@ class URLFetcherCore
void InformDelegateDownloadDataInDelegateThread(
scoped_ptr<std::string> download_data);
- URLFetcher* fetcher_; // Corresponding fetcher object
+ net::URLFetcher* fetcher_; // Corresponding fetcher object
GURL original_url_; // The URL we were asked to fetch
GURL url_; // The URL we eventually wound up at
- URLFetcher::RequestType request_type_; // What type of request is this?
+ net::URLFetcher::RequestType request_type_; // What type of request is this?
net::URLRequestStatus status_; // Status of the request
net::URLFetcherDelegate* delegate_; // Object to notify on completion
scoped_refptr<base::MessageLoopProxy> delegate_loop_proxy_;

Powered by Google App Engine
This is Rietveld 408576698