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

Unified Diff: chrome/service/cloud_print/cloud_print_connector.cc

Issue 10386063: Move URLFetcherDelegate to net/ and split URLFetcher between net/ and content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to head, fix win component build 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_connector.cc
diff --git a/chrome/service/cloud_print/cloud_print_connector.cc b/chrome/service/cloud_print/cloud_print_connector.cc
index 85f3d07e2c0085379aa6af21646cfd5f1749b504..861d0c6ba60dafc2f4cf3be678a1e82aabd9ab9b 100644
--- a/chrome/service/cloud_print/cloud_print_connector.cc
+++ b/chrome/service/cloud_print/cloud_print_connector.cc
@@ -129,7 +129,7 @@ void CloudPrintConnector::OnAuthError() {
// CloudPrintURLFetcher::Delegate implementation.
CloudPrintURLFetcher::ResponseAction CloudPrintConnector::HandleRawData(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
const std::string& data) {
// If this notification came as a result of user message call, stop it.
@@ -141,7 +141,7 @@ CloudPrintURLFetcher::ResponseAction CloudPrintConnector::HandleRawData(
}
CloudPrintURLFetcher::ResponseAction CloudPrintConnector::HandleJSONData(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -165,7 +165,7 @@ CloudPrintConnector::~CloudPrintConnector() {}
CloudPrintURLFetcher::ResponseAction
CloudPrintConnector::HandlePrinterListResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -232,7 +232,7 @@ CloudPrintConnector::HandlePrinterListResponse(
CloudPrintURLFetcher::ResponseAction
CloudPrintConnector::HandlePrinterDeleteResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -244,7 +244,7 @@ CloudPrintConnector::HandlePrinterDeleteResponse(
CloudPrintURLFetcher::ResponseAction
CloudPrintConnector::HandleRegisterPrinterResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
« no previous file with comments | « chrome/service/cloud_print/cloud_print_connector.h ('k') | chrome/service/cloud_print/cloud_print_url_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698