Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(838)

Side by Side Diff: chrome/browser/printing/cloud_print/cloud_print_consts.cc

Issue 1566047: First cut of Cloud Print Proxy implementation. The code is not enabled for no... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final review changes Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/printing/cloud_print/cloud_print_consts.h ('k') | chrome/browser/printing/cloud_print/cloud_print_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698