OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
7 | 7 |
8 namespace local_discovery { | 8 namespace local_discovery { |
9 | 9 |
10 extern const char kPrivetKeyError[]; | 10 extern const char kPrivetKeyError[]; |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 extern const char kPrivetErrorDeviceBusy[]; | 27 extern const char kPrivetErrorDeviceBusy[]; |
28 extern const char kPrivetErrorPrinterBusy[]; | 28 extern const char kPrivetErrorPrinterBusy[]; |
29 extern const char kPrivetErrorInvalidPrintJob[]; | 29 extern const char kPrivetErrorInvalidPrintJob[]; |
30 extern const char kPrivetErrorInvalidDocumentType[]; | 30 extern const char kPrivetErrorInvalidDocumentType[]; |
31 extern const char kPrivetErrorPendingUserAction[]; | 31 extern const char kPrivetErrorPendingUserAction[]; |
32 extern const char kPrivetErrorInvalidXPrivetToken[]; | 32 extern const char kPrivetErrorInvalidXPrivetToken[]; |
33 extern const char kPrivetErrorTimeout[]; | 33 extern const char kPrivetErrorTimeout[]; |
34 extern const char kPrivetErrorCancel[]; | 34 extern const char kPrivetErrorCancel[]; |
35 | 35 |
| 36 extern const char kPrivetV3ErrorDeviceBusy[]; |
| 37 extern const char kPrivetV3ErrorInvalidParams[]; |
| 38 extern const char kPrivetV3ErrorSetupUnavailable[]; |
| 39 |
36 extern const char kPrivetActionStart[]; | 40 extern const char kPrivetActionStart[]; |
37 extern const char kPrivetActionGetClaimToken[]; | 41 extern const char kPrivetActionGetClaimToken[]; |
38 extern const char kPrivetActionComplete[]; | 42 extern const char kPrivetActionComplete[]; |
39 extern const char kPrivetActionCancel[]; | 43 extern const char kPrivetActionCancel[]; |
40 | 44 |
41 extern const char kPrivetDefaultDeviceType[]; | 45 extern const char kPrivetDefaultDeviceType[]; |
42 extern const char kPrivetSubtypeTemplate[]; | 46 extern const char kPrivetSubtypeTemplate[]; |
43 | 47 |
44 extern const char kPrivetTypePrinter[]; | 48 extern const char kPrivetTypePrinter[]; |
45 | 49 |
(...skipping 16 matching lines...) Expand all Loading... |
62 | 66 |
63 const double kPrivetMaximumTimeRandomAddition = 0.2; | 67 const double kPrivetMaximumTimeRandomAddition = 0.2; |
64 | 68 |
65 const int kPrivetMinimumTimeout = 2; | 69 const int kPrivetMinimumTimeout = 2; |
66 | 70 |
67 const int kAccountIndexUseOAuth2 = -1; | 71 const int kAccountIndexUseOAuth2 = -1; |
68 | 72 |
69 } // namespace local_discovery | 73 } // namespace local_discovery |
70 | 74 |
71 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 75 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
OLD | NEW |