| Index: chrome/service/cloud_print/printer_job_handler.h
|
| ===================================================================
|
| --- chrome/service/cloud_print/printer_job_handler.h (revision 107061)
|
| +++ chrome/service/cloud_print/printer_job_handler.h (working copy)
|
| @@ -127,18 +127,18 @@
|
|
|
| // CloudPrintURLFetcher::Delegate implementation.
|
| virtual CloudPrintURLFetcher::ResponseAction HandleRawResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| const net::URLRequestStatus& status,
|
| int response_code,
|
| const net::ResponseCookies& cookies,
|
| const std::string& data);
|
| virtual CloudPrintURLFetcher::ResponseAction HandleRawData(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| const std::string& data);
|
| virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
| @@ -164,52 +164,52 @@
|
| private:
|
| // Prototype for a JSON data handler.
|
| typedef CloudPrintURLFetcher::ResponseAction
|
| - (PrinterJobHandler::*JSONDataHandler)(const URLFetcher* source,
|
| + (PrinterJobHandler::*JSONDataHandler)(const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
| // Prototype for a data handler.
|
| typedef CloudPrintURLFetcher::ResponseAction
|
| - (PrinterJobHandler::*DataHandler)(const URLFetcher* source,
|
| + (PrinterJobHandler::*DataHandler)(const content::URLFetcher* source,
|
| const GURL& url,
|
| const std::string& data);
|
| // Begin request handlers for each state in the state machine
|
| CloudPrintURLFetcher::ResponseAction HandlePrinterUpdateResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandlePrinterDeleteResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandleJobMetadataResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandlePrintTicketResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| const std::string& data);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandlePrintDataResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| const std::string& data);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandleSuccessStatusUpdateResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandleFailureStatusUpdateResponse(
|
| - const URLFetcher* source,
|
| + const content::URLFetcher* source,
|
| const GURL& url,
|
| base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|