Index: chrome/service/cloud_print/cloud_print_proxy_backend.cc |
=================================================================== |
--- chrome/service/cloud_print/cloud_print_proxy_backend.cc (revision 107061) |
+++ chrome/service/cloud_print/cloud_print_proxy_backend.cc (working copy) |
@@ -82,7 +82,7 @@ |
// CloudPrintURLFetcher::Delegate implementation. |
virtual CloudPrintURLFetcher::ResponseAction HandleJSONData( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
@@ -118,43 +118,43 @@ |
// Prototype for a response handler. |
typedef CloudPrintURLFetcher::ResponseAction |
(CloudPrintProxyBackend::Core::*ResponseHandler)( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
// Begin response handlers |
CloudPrintURLFetcher::ResponseAction HandlePrinterListResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
CloudPrintURLFetcher::ResponseAction HandleRegisterPrinterResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
CloudPrintURLFetcher::ResponseAction HandleRegisterFailedStatusResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
CloudPrintURLFetcher::ResponseAction HandlePrintSystemUnavailableResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
CloudPrintURLFetcher::ResponseAction HandleEnumPrintersFailedResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
CloudPrintURLFetcher::ResponseAction HandleGetAuthCodeResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded); |
@@ -766,7 +766,7 @@ |
// CloudPrintURLFetcher::Delegate implementation. |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandleJSONData( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -806,7 +806,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandleGetAuthCodeResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -835,7 +835,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandlePrinterListResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -954,7 +954,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandleRegisterPrinterResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -978,7 +978,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandleRegisterFailedStatusResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -993,7 +993,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandlePrintSystemUnavailableResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |
@@ -1008,7 +1008,7 @@ |
CloudPrintURLFetcher::ResponseAction |
CloudPrintProxyBackend::Core::HandleEnumPrintersFailedResponse( |
- const URLFetcher* source, |
+ const content::URLFetcher* source, |
const GURL& url, |
DictionaryValue* json_data, |
bool succeeded) { |