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

Side by Side Diff: chrome/common/cloud_print/cloud_print_consts.h

Issue 11360151: Move common cloud print methods from service/cloud_print to common/cloud_print. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
6 #define CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
7
8 #include "base/basictypes.h"
9
10 namespace cloud_print {
11
12 // Values in parameters when updating or registering a printer at cloud print
13 // server.
14 extern const char kProxyIdValue[];
15 extern const char kPrinterNameValue[];
16 extern const char kPrinterDescValue[];
17 extern const char kPrinterCapsValue[];
18 extern const char kPrinterDefaultsValue[];
19 extern const char kPrinterStatusValue[];
20 extern const char kPrinterTagValue[];
21 extern const char kPrinterRemoveTagValue[];
22 extern const char kMessageTextValue[];
23
24 // Values in the respone JSON from the cloud print server
25 extern const char kSuccessValue[];
26 extern const char kNameValue[];
27 extern const char kIdValue[];
28 extern const char kTicketUrlValue[];
29 extern const char kFileUrlValue[];
30 extern const char kPrinterListValue[];
31 extern const char kJobListValue[];
32 extern const char kTitleValue[];
33 extern const char kPrinterCapsHashValue[];
34 extern const char kTagsValue[];
35 extern const char kXMPPJidValue[];
36 extern const char kOAuthCodeValue[];
37 extern const char kCreateTimeValue[];
38 extern const char kPrinterTypeValue[];
39 extern const char kChromeVersionTagName[];
40 extern const char kSystemNameTagName[];
41 extern const char kSystemVersionTagName[];
42
43 extern const char kChromeCloudPrintProxyHeader[];
44
45 } // namespace cloud_print
46
47 #endif // CHROME_COMMON_CLOUD_PRINT_CLOUD_PRINT_CONSTS_H_
48
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698