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 // Constant defines used in the cloud print proxy code | 5 // Constant defines used in the cloud print proxy code |
6 | 6 |
7 #include "chrome/service/cloud_print/cloud_print_consts.h" | 7 #include "chrome/service/cloud_print/cloud_print_consts.h" |
8 | 8 |
9 const char kProxyIdValue[] = "proxy"; | 9 const char kProxyIdValue[] = "proxy"; |
10 const char kPrinterNameValue[] = "printer"; | 10 const char kPrinterNameValue[] = "printer"; |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 const char kJobFetchReasonPoll[] = "poll"; | 47 const char kJobFetchReasonPoll[] = "poll"; |
48 // Job fetch on being notified by the server. | 48 // Job fetch on being notified by the server. |
49 const char kJobFetchReasonNotified[] = "notified"; | 49 const char kJobFetchReasonNotified[] = "notified"; |
50 // Job fetch after a successful print to query for more jobs. | 50 // Job fetch after a successful print to query for more jobs. |
51 const char kJobFetchReasonQueryMore[] = "querymore"; | 51 const char kJobFetchReasonQueryMore[] = "querymore"; |
52 | 52 |
53 // Short message ids for diagnostic messages sent to the server. | 53 // Short message ids for diagnostic messages sent to the server. |
54 const char kPrintSystemFailedMessageId[] = "printsystemfail"; | 54 const char kPrintSystemFailedMessageId[] = "printsystemfail"; |
55 const char kGetPrinterCapsFailedMessageId[] = "getprncapsfail"; | 55 const char kGetPrinterCapsFailedMessageId[] = "getprncapsfail"; |
56 const char kEnumPrintersFailedMessageId[] = "enumfail"; | 56 const char kEnumPrintersFailedMessageId[] = "enumfail"; |
| 57 const char kZombiePrinterMessageId[] = "zombieprinter"; |
57 | 58 |
58 const char kDefaultCloudPrintOAuthClientId[] = | 59 const char kDefaultCloudPrintOAuthClientId[] = |
59 "551556820943.apps.googleusercontent.com"; | 60 "551556820943.apps.googleusercontent.com"; |
60 const char kDefaultCloudPrintOAuthClientSecret[] = "u3/mp8CgLFxh4uiX1855/MHe"; | 61 const char kDefaultCloudPrintOAuthClientSecret[] = "u3/mp8CgLFxh4uiX1855/MHe"; |
OLD | NEW |