blob: a3dbe6fb059da3d091f3fa5e5c28c36340c1a725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (c) 2010 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.
// Constant defines used in the cloud print proxy code
#include "chrome/service/cloud_print/cloud_print_consts.h"
const char kProxyIdValue[] = "proxy";
const char kPrinterNameValue[] = "printer";
const char kPrinterDescValue[] = "description";
const char kPrinterCapsValue[] = "capabilities";
const char kPrinterDefaultsValue[] = "defaults";
const char kPrinterStatusValue[] = "status";
const char kPrinterTagValue[] = "tag";
// Values in the respone JSON from the cloud print server
const wchar_t kPrinterListValue[] = L"printers";
const wchar_t kSuccessValue[] = L"success";
const wchar_t kNameValue[] = L"name";
const wchar_t kIdValue[] = L"id";
const wchar_t kTicketUrlValue[] = L"ticketUrl";
const wchar_t kFileUrlValue[] = L"fileUrl";
const wchar_t kJobListValue[] = L"jobs";
const wchar_t kTitleValue[] = L"title";
const wchar_t kPrinterCapsHashValue[] = L"capsHash";
const char kDefaultCloudPrintServerUrl[] = "https://www.google.com/cloudprint";
const char kCloudPrintTalkServiceUrl[] = "http://www.google.com/cloudprint";
const char kGaiaUrl[] = "https://www.google.com/accounts/ClientLogin";
const char kCloudPrintGaiaServiceId[] = "cloudprint";
const char kSyncGaiaServiceId[] = "chromiumsync";
|