| Index: chrome/service/cloud_print/printer_job_handler.h
|
| ===================================================================
|
| --- chrome/service/cloud_print/printer_job_handler.h (revision 92173)
|
| +++ chrome/service/cloud_print/printer_job_handler.h (working copy)
|
| @@ -140,7 +140,7 @@
|
| virtual CloudPrintURLFetcher::ResponseAction HandleJSONData(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
| virtual void OnRequestGiveUp();
|
| virtual void OnRequestAuthError();
|
| @@ -166,7 +166,7 @@
|
| typedef CloudPrintURLFetcher::ResponseAction
|
| (PrinterJobHandler::*JSONDataHandler)(const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
| // Prototype for a data handler.
|
| typedef CloudPrintURLFetcher::ResponseAction
|
| @@ -177,19 +177,19 @@
|
| CloudPrintURLFetcher::ResponseAction HandlePrinterUpdateResponse(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandlePrinterDeleteResponse(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandleJobMetadataResponse(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandlePrintTicketResponse(
|
| @@ -205,13 +205,13 @@
|
| CloudPrintURLFetcher::ResponseAction HandleSuccessStatusUpdateResponse(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
|
|
| CloudPrintURLFetcher::ResponseAction HandleFailureStatusUpdateResponse(
|
| const URLFetcher* source,
|
| const GURL& url,
|
| - DictionaryValue* json_data,
|
| + base::DictionaryValue* json_data,
|
| bool succeeded);
|
| // End request handlers for each state in the state machine
|
|
|
|
|