Index: chrome/common/cloud_print/cloud_print_consts.h |
diff --git a/chrome/common/cloud_print/cloud_print_consts.h b/chrome/common/cloud_print/cloud_print_consts.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8b4da0863d52c4f9f6f72c9ffb102b10c9aa377c |
--- /dev/null |
+++ b/chrome/common/cloud_print/cloud_print_consts.h |
@@ -0,0 +1,48 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
+#define CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
+ |
+#include "base/basictypes.h" |
+ |
+namespace cloud_print { |
+ |
+// Values in parameters when updating or registering a printer at cloud print |
+// server. |
+extern const char kProxyIdValue[]; |
+extern const char kPrinterNameValue[]; |
+extern const char kPrinterDescValue[]; |
+extern const char kPrinterCapsValue[]; |
+extern const char kPrinterDefaultsValue[]; |
+extern const char kPrinterStatusValue[]; |
+extern const char kPrinterTagValue[]; |
+extern const char kPrinterRemoveTagValue[]; |
+extern const char kMessageTextValue[]; |
+ |
+// Values in the respone JSON from the cloud print server |
+extern const char kSuccessValue[]; |
+extern const char kNameValue[]; |
+extern const char kIdValue[]; |
+extern const char kTicketUrlValue[]; |
+extern const char kFileUrlValue[]; |
+extern const char kPrinterListValue[]; |
+extern const char kJobListValue[]; |
+extern const char kTitleValue[]; |
+extern const char kPrinterCapsHashValue[]; |
+extern const char kTagsValue[]; |
+extern const char kXMPPJidValue[]; |
+extern const char kOAuthCodeValue[]; |
+extern const char kCreateTimeValue[]; |
+extern const char kPrinterTypeValue[]; |
+extern const char kChromeVersionTagName[]; |
+extern const char kSystemNameTagName[]; |
+extern const char kSystemVersionTagName[]; |
+ |
+extern const char kChromeCloudPrintProxyHeader[]; |
+ |
+} // namespace cloud_print |
+ |
+#endif // CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_ |
+ |