| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ | 5 #ifndef CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
| 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ | 6 #define CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 // Constant defines used in the cloud print proxy code | |
| 11 extern const char kProxyIdValue[]; | |
| 12 extern const char kPrinterNameValue[]; | |
| 13 extern const char kPrinterDescValue[]; | |
| 14 extern const char kPrinterCapsValue[]; | |
| 15 extern const char kPrinterDefaultsValue[]; | |
| 16 extern const char kPrinterStatusValue[]; | |
| 17 extern const char kPrinterTagValue[]; | |
| 18 extern const char kPrinterRemoveTagValue[]; | |
| 19 extern const char kMessageTextValue[]; | |
| 20 | |
| 21 // Values in the respone JSON from the cloud print server | |
| 22 extern const char kNameValue[]; | |
| 23 extern const char kIdValue[]; | |
| 24 extern const char kTicketUrlValue[]; | |
| 25 extern const char kFileUrlValue[]; | |
| 26 extern const char kJobListValue[]; | |
| 27 extern const char kTitleValue[]; | |
| 28 extern const char kPrinterCapsHashValue[]; | |
| 29 extern const char kTagsValue[]; | |
| 30 extern const char kXMPPJidValue[]; | |
| 31 extern const char kOAuthCodeValue[]; | |
| 32 | |
| 33 extern const char kProxyTagPrefix[]; | 10 extern const char kProxyTagPrefix[]; |
| 34 extern const char kTagsHashTagName[]; | 11 extern const char kTagsHashTagName[]; |
| 35 extern const char kTagDryRunFlag[]; | 12 extern const char kTagDryRunFlag[]; |
| 36 extern const char kChromeVersionTagName[]; | |
| 37 extern const char kSystemNameTagName[]; | |
| 38 extern const char kSystemVersionTagName[]; | |
| 39 | 13 |
| 40 extern const char kCloudPrintGaiaServiceId[]; | |
| 41 extern const char kProxyAuthUserAgent[]; | |
| 42 extern const char kCloudPrintPushNotificationsSource[]; | |
| 43 extern const char kCloudPrintUserAgent[]; | |
| 44 extern const char kJobFetchReasonStartup[]; | 14 extern const char kJobFetchReasonStartup[]; |
| 45 extern const char kJobFetchReasonPoll[]; | 15 extern const char kJobFetchReasonPoll[]; |
| 46 extern const char kJobFetchReasonNotified[]; | 16 extern const char kJobFetchReasonNotified[]; |
| 47 extern const char kJobFetchReasonQueryMore[]; | 17 extern const char kJobFetchReasonQueryMore[]; |
| 48 extern const char kPrintSystemFailedMessageId[]; | |
| 49 extern const char kGetPrinterCapsFailedMessageId[]; | |
| 50 extern const char kEnumPrintersFailedMessageId[]; | |
| 51 extern const char kZombiePrinterMessageId[]; | |
| 52 | 18 |
| 53 // Max retry count for job data fetch requests. | 19 // Max retry count for job data fetch requests. |
| 54 const int kJobDataMaxRetryCount = 5; | 20 const int kJobDataMaxRetryCount = 5; |
| 55 // Max retry count (infinity) for API fetch requests. | 21 // Max retry count (infinity) for API fetch requests. |
| 56 const int kCloudPrintAPIMaxRetryCount = -1; | 22 const int kCloudPrintAPIMaxRetryCount = -1; |
| 57 // Max retry count (infinity) for Registration requests. | 23 // Max retry count (infinity) for Registration requests. |
| 58 const int kCloudPrintRegisterMaxRetryCount = -1; | 24 const int kCloudPrintRegisterMaxRetryCount = -1; |
| 59 // Max retry count (infinity) for authentication requests. | 25 // Max retry count (infinity) for authentication requests. |
| 60 const int kCloudPrintAuthMaxRetryCount = -1; | 26 const int kCloudPrintAuthMaxRetryCount = -1; |
| 61 | 27 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 72 | 38 |
| 73 // Number of failed pings before we try to reinstablish XMPP connection. | 39 // Number of failed pings before we try to reinstablish XMPP connection. |
| 74 const int kMaxFailedXmppPings = 2; | 40 const int kMaxFailedXmppPings = 2; |
| 75 | 41 |
| 76 // The number of seconds before the OAuth2 access token is due to expire that | 42 // The number of seconds before the OAuth2 access token is due to expire that |
| 77 // we try and refresh it. | 43 // we try and refresh it. |
| 78 const int kTokenRefreshGracePeriodSecs = 5*60; // 5 minutes in seconds | 44 const int kTokenRefreshGracePeriodSecs = 5*60; // 5 minutes in seconds |
| 79 | 45 |
| 80 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ | 46 #endif // CHROME_SERVICE_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
| 81 | 47 |
| OLD | NEW |