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

Unified Diff: chrome/service/cloud_print/cloud_print_url_fetcher.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
Index: chrome/service/cloud_print/cloud_print_url_fetcher.h
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher.h b/chrome/service/cloud_print/cloud_print_url_fetcher.h
index 92b988d70d07511ff914b9e1520baa02c290cc49..654b4e78b5d80272d5952efdc66805f2b0f474ad 100644
--- a/chrome/service/cloud_print/cloud_print_url_fetcher.h
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher.h
@@ -10,7 +10,7 @@
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
-#include "content/public/common/url_fetcher.h"
+#include "net/url_request/url_fetcher.h"
#include "net/url_request/url_fetcher_delegate.h"
class GURL;
@@ -118,7 +118,7 @@ class CloudPrintURLFetcher
private:
void StartRequestHelper(const GURL& url,
- content::URLFetcher::RequestType request_type,
+ net::URLFetcher::RequestType request_type,
Delegate* delegate,
int max_retries,
const std::string& post_data_mime_type,
@@ -126,10 +126,10 @@ class CloudPrintURLFetcher
const std::string& additional_headers);
void SetupRequestHeaders();
- scoped_ptr<content::URLFetcher> request_;
+ scoped_ptr<net::URLFetcher> request_;
Delegate* delegate_;
int num_retries_;
- content::URLFetcher::RequestType request_type_;
+ net::URLFetcher::RequestType request_type_;
std::string additional_headers_;
std::string post_data_mime_type_;
std::string post_data_;
« no previous file with comments | « chrome/common/net/gaia/oauth2_revocation_fetcher_unittest.cc ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698