OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 15 matching lines...) Expand all Loading... |
26 const char kTitleValue[] = "title"; | 26 const char kTitleValue[] = "title"; |
27 const char kPrinterCapsHashValue[] = "capsHash"; | 27 const char kPrinterCapsHashValue[] = "capsHash"; |
28 const char kPrinterTagsValue[] = "tags"; | 28 const char kPrinterTagsValue[] = "tags"; |
29 const char kProxyTagPrefix[] = "__cp__"; | 29 const char kProxyTagPrefix[] = "__cp__"; |
30 const char kTagsHashTagName[] = "__cp__tagshash"; | 30 const char kTagsHashTagName[] = "__cp__tagshash"; |
31 const char kLocationTagName[] = "location"; | 31 const char kLocationTagName[] = "location"; |
32 const char kDriverNameTagName[] = "drivername"; | 32 const char kDriverNameTagName[] = "drivername"; |
33 | 33 |
34 | 34 |
35 const char kDefaultCloudPrintServerUrl[] = "https://www.google.com/cloudprint"; | 35 const char kDefaultCloudPrintServerUrl[] = "https://www.google.com/cloudprint"; |
36 const char kCloudPrintTalkServiceUrl[] = "http://www.google.com/cloudprint"; | |
37 const char kGaiaUrl[] = "https://www.google.com/accounts/ClientLogin"; | 36 const char kGaiaUrl[] = "https://www.google.com/accounts/ClientLogin"; |
38 const char kCloudPrintGaiaServiceId[] = "cloudprint"; | 37 const char kCloudPrintGaiaServiceId[] = "cloudprint"; |
39 const char kSyncGaiaServiceId[] = "chromiumsync"; | 38 const char kSyncGaiaServiceId[] = "chromiumsync"; |
| 39 const char kCloudPrintPushNotificationsSource[] = "cloudprint.google.com"; |
40 | 40 |
OLD | NEW |