| Index: chrome/service/cloud_print/cloud_print_helpers.h
|
| diff --git a/chrome/service/cloud_print/cloud_print_helpers.h b/chrome/service/cloud_print/cloud_print_helpers.h
|
| index e3bb5b6935625a0c6c2b1ab3175b9c7c710a2013..f5e733e2de26c5ec7d79a41c88c318ad70e73c22 100644
|
| --- a/chrome/service/cloud_print/cloud_print_helpers.h
|
| +++ b/chrome/service/cloud_print/cloud_print_helpers.h
|
| @@ -19,17 +19,6 @@ class DictionaryValue;
|
| // Helper methods for the cloud print proxy code.
|
| class CloudPrintHelpers {
|
| public:
|
| - static GURL GetUrlForPrinterRegistration(const GURL& cloud_print_server_url);
|
| - static GURL GetUrlForPrinterUpdate(const GURL& cloud_print_server_url,
|
| - const std::string& printer_id);
|
| - static GURL GetUrlForPrinterDelete(const GURL& cloud_print_server_url,
|
| - const std::string& printer_id,
|
| - const std::string& reason);
|
| - static GURL GetUrlForPrinterList(const GURL& cloud_print_server_url,
|
| - const std::string& proxy_id);
|
| - static GURL GetUrlForJobFetch(const GURL& cloud_print_server_url,
|
| - const std::string& printer_id,
|
| - const std::string& reason);
|
| static GURL GetUrlForJobStatusUpdate(const GURL& cloud_print_server_url,
|
| const std::string& job_id,
|
| cloud_print::PrintJobStatus status);
|
| @@ -37,11 +26,6 @@ class CloudPrintHelpers {
|
| const GURL& cloud_print_server_url,
|
| const std::string& job_id,
|
| const cloud_print::PrintJobDetails& details);
|
| - static GURL GetUrlForUserMessage(const GURL& cloud_print_server_url,
|
| - const std::string& message_id);
|
| - static GURL GetUrlForGetAuthCode(const GURL& cloud_print_server_url,
|
| - const std::string& oauth_client_id,
|
| - const std::string& proxy_id);
|
|
|
| // Returns an MD5 hash for printer tags.
|
| static std::string GetHashOfPrinterTags(
|
| @@ -51,13 +35,11 @@ class CloudPrintHelpers {
|
| const printing::PrinterBasicInfo& printer_info,
|
| const std::string& mime_boundary);
|
|
|
| - // Returns true is tags indicate a dry run (test) job.
|
| - static bool IsDryRunJob(const std::vector<std::string>& tags);
|
| -
|
| // Created CloudPrint auth header from the auth token stored in the store.
|
| static std::string GetCloudPrintAuthHeaderFromStore();
|
| - // Created CloudPrint auth header from the auth token.
|
| - static std::string GetCloudPrintAuthHeader(const std::string& auth_token);
|
| +
|
| + // Returns true is tags indicate a dry run (test) job.
|
| + static bool IsDryRunJob(const std::vector<std::string>& tags);
|
|
|
| private:
|
| CloudPrintHelpers() {}
|
|
|