OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_UNITTEST_CONSTANTS_H_ |
| 6 #define CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_UNITTEST_CONSTANTS_H_ |
| 7 |
| 8 |
| 9 namespace cloud_print { |
| 10 extern const char kExampleJobListResponse[]; |
| 11 extern const char kExampleJobListResponseEmpty[]; |
| 12 extern const char kExamplePrintTicket[]; |
| 13 extern const char kExamplePrintTicketURI[]; |
| 14 extern const char kExamplePrintDownloadURI[]; |
| 15 extern const char kExamplePrinterJobListURI[]; |
| 16 extern const char kExamplePrinterJobControlURI[];\ |
| 17 extern const char kExampleControlResponse[]; |
| 18 extern const char kExamplePrinterID[]; |
| 19 extern const char kExampleJobID[]; |
| 20 extern const char kExampleCloudPrintServerURL[]; |
| 21 extern const char kExamplePrinterCapabilities[]; |
| 22 extern const char kExampleCapsMimeType[]; |
| 23 extern const char kExampleDefaults[]; |
| 24 extern const char kExampleDefaultMimeType[]; |
| 25 extern const char kExampleCloudPrintOAuthToken[]; |
| 26 extern const char kExamplePrintData[]; |
| 27 extern const char kExampleJobDownloadResponseHeaders[]; |
| 28 extern const char kExampleUpdateDoneURL[]; |
| 29 extern const char kExamplePrinterName[]; |
| 30 extern const char kExamplePrinterDescription[]; |
| 31 |
| 32 } // namespace cloud_print |
| 33 |
| 34 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_UNITTEST_CONSTANTS_H_ |
| 35 |
OLD | NEW |