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 | |
11 extern const char kExampleJobListResponse[]; | |
12 | |
13 extern const char kExampleJobListResponseEmpty[]; | |
14 | |
15 extern const char kExamplePrintTicket[]; | |
Vitaly Buka (NO REVIEWS)
2013/02/12 21:45:15
empty line between constants are unnecessary
Noam Samuel (WRONG ACCOUNT)
2013/02/12 21:53:18
Done.
| |
16 | |
17 extern const char kExamplePrintTicketURI[]; | |
18 | |
19 extern const char kExamplePrintDownloadURI[]; | |
20 | |
21 extern const char kExamplePrinterJobListURI[]; | |
22 | |
23 extern const char kExamplePrinterJobControlURI[]; | |
24 | |
25 extern const char kExampleControlResponse[]; | |
26 | |
27 extern const char kExamplePrinterID[]; | |
28 | |
29 extern const char kExampleJobID[]; | |
30 | |
31 extern const char kExampleCloudPrintServerURL[]; | |
32 | |
33 extern const char kExamplePrinterCapabilities[]; | |
34 | |
35 extern const char kExampleCapsMimeType[]; | |
36 | |
37 extern const char kExampleDefaults[]; | |
38 | |
39 extern const char kExampleDefaultMimeType[]; | |
40 | |
41 extern const char kExampleCloudPrintOAuthToken[]; | |
42 | |
43 extern const char kExamplePrintData[]; | |
44 | |
45 extern const char kExampleJobDownloadResponseHeaders[]; | |
46 | |
47 extern const char kExampleUpdateDoneURL[]; | |
48 | |
49 extern const char kExamplePrinterName[]; | |
50 | |
51 extern const char kExamplePrinterDescription[]; | |
52 } // namespace cloud_print | |
Vitaly Buka (NO REVIEWS)
2013/02/12 21:45:15
empty line before line 52
Noam Samuel (WRONG ACCOUNT)
2013/02/12 21:53:18
Done.
| |
53 | |
54 #endif // CHROME_SERVICE_CLOUD_PRINT_PRINTER_JOB_HANDLER_UNITTEST_CONSTANTS_H_ | |
55 | |
OLD | NEW |