| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 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 | 
|  | 3 // found in the LICENSE file. | 
|  | 4 | 
|  | 5 // Constant defines used in the cloud print proxy code | 
|  | 6 | 
|  | 7 #include "chrome/browser/printing/cloud_print/cloud_print_consts.h" | 
|  | 8 | 
|  | 9 const char kProxyIdValue[] = "proxy"; | 
|  | 10 const char kPrinterNameValue[] = "printer"; | 
|  | 11 const char kPrinterDescValue[] = "description"; | 
|  | 12 const char kPrinterCapsValue[] = "capabilities"; | 
|  | 13 const char kPrinterDefaultsValue[] = "defaults"; | 
|  | 14 const char kPrinterStatusValue[] = "status"; | 
|  | 15 | 
|  | 16 // Values in the respone JSON from the cloud print server | 
|  | 17 const wchar_t kPrinterListValue[] = L"printers"; | 
|  | 18 const wchar_t kSuccessValue[] = L"success"; | 
|  | 19 const wchar_t kNameValue[] = L"name"; | 
|  | 20 const wchar_t kIdValue[] = L"id"; | 
|  | 21 const wchar_t kTicketUrlValue[] = L"ticketUrl"; | 
|  | 22 const wchar_t kFileUrlValue[] = L"fileUrl"; | 
|  | 23 const wchar_t kJobListValue[] = L"jobs"; | 
|  | 24 const wchar_t kTitleValue[] = L"title"; | 
|  | 25 const wchar_t kPrinterCapsHashValue[] = L"capsHash"; | 
|  | 26 | 
|  | 27 // TODO(sanjeevr): Change this to a real one. Also read this from prefs instead | 
|  | 28 // of hardcoding. | 
|  | 29 const char kCloudPrintServerUrl[] = "https://<TBD>"; | 
|  | 30 | 
| OLD | NEW | 
|---|