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

Unified Diff: chrome/service/cloud_print/printer_job_handler.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
« no previous file with comments | « chrome/service/cloud_print/printer_job_handler.h ('k') | chrome/service/gaia/service_gaia_authenticator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/cloud_print/printer_job_handler.cc
diff --git a/chrome/service/cloud_print/printer_job_handler.cc b/chrome/service/cloud_print/printer_job_handler.cc
index cbbfa66bea826822ea4601aee833b41808dc2af5..1deedd0015e3f52a7508b8e9f849cf9b54dffa92 100644
--- a/chrome/service/cloud_print/printer_job_handler.cc
+++ b/chrome/service/cloud_print/printer_job_handler.cc
@@ -100,7 +100,7 @@ void PrinterJobHandler::Shutdown() {
// CloudPrintURLFetcher::Delegate implementation.
CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
const net::URLRequestStatus& status,
int response_code,
@@ -119,7 +119,7 @@ CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawResponse(
}
CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawData(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
const std::string& data) {
if (!next_data_handler_)
@@ -128,7 +128,7 @@ CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleRawData(
}
CloudPrintURLFetcher::ResponseAction PrinterJobHandler::HandleJSONData(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -224,7 +224,7 @@ PrinterJobHandler::~PrinterJobHandler() {
// Begin Response handlers
CloudPrintURLFetcher::ResponseAction
PrinterJobHandler::HandlePrinterUpdateResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -238,7 +238,7 @@ PrinterJobHandler::HandlePrinterUpdateResponse(
CloudPrintURLFetcher::ResponseAction
PrinterJobHandler::HandleJobMetadataResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -286,7 +286,7 @@ PrinterJobHandler::HandleJobMetadataResponse(
}
CloudPrintURLFetcher::ResponseAction
-PrinterJobHandler::HandlePrintTicketResponse(const content::URLFetcher* source,
+PrinterJobHandler::HandlePrintTicketResponse(const net::URLFetcher* source,
const GURL& url,
const std::string& data) {
VLOG(1) << "CP_CONNECTOR: Handle print ticket response, id: "
@@ -309,7 +309,7 @@ PrinterJobHandler::HandlePrintTicketResponse(const content::URLFetcher* source,
}
CloudPrintURLFetcher::ResponseAction
-PrinterJobHandler::HandlePrintDataResponse(const content::URLFetcher* source,
+PrinterJobHandler::HandlePrintDataResponse(const net::URLFetcher* source,
const GURL& url,
const std::string& data) {
VLOG(1) << "CP_CONNECTOR: Handle print data response, id: "
@@ -338,7 +338,7 @@ PrinterJobHandler::HandlePrintDataResponse(const content::URLFetcher* source,
CloudPrintURLFetcher::ResponseAction
PrinterJobHandler::HandleSuccessStatusUpdateResponse(
- const content::URLFetcher* source,
+ const net::URLFetcher* source,
const GURL& url,
DictionaryValue* json_data,
bool succeeded) {
@@ -365,7 +365,7 @@ PrinterJobHandler::HandleSuccessStatusUpdateResponse(
CloudPrintURLFetcher::ResponseAction
PrinterJobHandler::HandleFailureStatusUpdateResponse(
- 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/printer_job_handler.h ('k') | chrome/service/gaia/service_gaia_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698