| 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[]; |
| 11 extern const char kPrivetInfoKeyToken[]; | 11 extern const char kPrivetInfoKeyToken[]; |
| 12 extern const char kPrivetInfoKeyAPIList[]; | 12 extern const char kPrivetInfoKeyAPIList[]; |
| 13 extern const char kPrivetInfoKeyID[]; | 13 extern const char kPrivetInfoKeyID[]; |
| 14 extern const char kPrivetKeyDeviceID[]; | 14 extern const char kPrivetKeyDeviceID[]; |
| 15 extern const char kPrivetKeyClaimURL[]; | 15 extern const char kPrivetKeyClaimURL[]; |
| 16 extern const char kPrivetKeyClaimToken[]; | 16 extern const char kPrivetKeyClaimToken[]; |
| 17 extern const char kPrivetKeyTimeout[]; | 17 extern const char kPrivetKeyTimeout[]; |
| 18 | 18 |
| 19 extern const char kPrivetActionNameInfo[]; | 19 extern const char kPrivetActionNameInfo[]; |
| 20 | 20 |
| 21 extern const char kPrivetInfoPath[]; | 21 extern const char kPrivetInfoPath[]; |
| 22 extern const char kPrivetRegisterPath[]; | 22 extern const char kPrivetRegisterPath[]; |
| 23 extern const char kPrivetCapabilitiesPath[]; | 23 extern const char kPrivetCapabilitiesPath[]; |
| 24 extern const char kPrivetSubmitdocPath[]; | 24 extern const char kPrivetSubmitdocPath[]; |
| 25 extern const char kPrivetCreatejobPath[]; | 25 extern const char kPrivetCreatejobPath[]; |
| 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 kPrivetErrorPendingUserAction[]; | 31 extern const char kPrivetErrorPendingUserAction[]; |
| 31 extern const char kPrivetErrorInvalidXPrivetToken[]; | 32 extern const char kPrivetErrorInvalidXPrivetToken[]; |
| 32 extern const char kPrivetErrorTimeout[]; | 33 extern const char kPrivetErrorTimeout[]; |
| 33 extern const char kPrivetErrorCancel[]; | 34 extern const char kPrivetErrorCancel[]; |
| 34 | 35 |
| 35 extern const char kPrivetActionStart[]; | 36 extern const char kPrivetActionStart[]; |
| 36 extern const char kPrivetActionGetClaimToken[]; | 37 extern const char kPrivetActionGetClaimToken[]; |
| 37 extern const char kPrivetActionComplete[]; | 38 extern const char kPrivetActionComplete[]; |
| 38 extern const char kPrivetActionCancel[]; | 39 extern const char kPrivetActionCancel[]; |
| 39 | 40 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 59 | 60 |
| 60 const double kPrivetMaximumTimeRandomAddition = 0.2; | 61 const double kPrivetMaximumTimeRandomAddition = 0.2; |
| 61 | 62 |
| 62 const int kPrivetMinimumTimeout = 2; | 63 const int kPrivetMinimumTimeout = 2; |
| 63 | 64 |
| 64 const int kAccountIndexUseOAuth2 = -1; | 65 const int kAccountIndexUseOAuth2 = -1; |
| 65 | 66 |
| 66 } // namespace local_discovery | 67 } // namespace local_discovery |
| 67 | 68 |
| 68 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ | 69 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_CONSTANTS_H_ |
| OLD | NEW |