| Index: chrome/service/cloud_print/cloud_print_helpers.h
|
| ===================================================================
|
| --- chrome/service/cloud_print/cloud_print_helpers.h (revision 91508)
|
| +++ chrome/service/cloud_print/cloud_print_helpers.h (working copy)
|
| @@ -12,10 +12,13 @@
|
| #include "chrome/service/cloud_print/print_system.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| -class DictionaryValue;
|
| class Task;
|
| class URLFetcher;
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| // Helper methods for the cloud print proxy code.
|
| class CloudPrintHelpers {
|
| public:
|
| @@ -47,7 +50,8 @@
|
| // value returns the value of the "success" value in the response JSON.
|
| // Returns the response as a dictionary value.
|
| static bool ParseResponseJSON(const std::string& response_data,
|
| - bool* succeeded, DictionaryValue** response_dict);
|
| + bool* succeeded,
|
| + base::DictionaryValue** response_dict);
|
|
|
| // Prepares one value as part of a multi-part upload request.
|
| static void AddMultipartValueForUpload(
|
| @@ -72,4 +76,3 @@
|
| };
|
|
|
| #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_HELPERS_H_
|
| -
|
|
|