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

Side by Side Diff: printing/print_job_constants.cc

Issue 7038028: Initial support for cloudprint in print preview (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolved new conflictswq Created 9 years, 5 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
« no previous file with comments | « printing/print_job_constants.h ('k') | printing/printing.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "printing/print_job_constants.h" 5 #include "printing/print_job_constants.h"
6 6
7 namespace printing { 7 namespace printing {
8 8
9 // Print using cloud print: true if selected, false if not.
10 const char kSettingCloudPrintId[] = "cloudPrintID";
11
9 // Print job setting 'collate'. 12 // Print job setting 'collate'.
10 const char kSettingCollate[] = "collate"; 13 const char kSettingCollate[] = "collate";
11 14
12 // Print out color: true for color, false for grayscale. 15 // Print out color: true for color, false for grayscale.
13 const char kSettingColor[] = "color"; 16 const char kSettingColor[] = "color";
14 17
15 // Number of copies. 18 // Number of copies.
16 const char kSettingCopies[] = "copies"; 19 const char kSettingCopies[] = "copies";
17 20
18 // Device name: Unique printer identifier. 21 // Device name: Unique printer identifier.
(...skipping 14 matching lines...) Expand all
33 // The last page of a page range. (1-based) 36 // The last page of a page range. (1-based)
34 const char kSettingPageRangeTo[] = "to"; 37 const char kSettingPageRangeTo[] = "to";
35 38
36 // Printer name. 39 // Printer name.
37 const char kSettingPrinterName[] = "printerName"; 40 const char kSettingPrinterName[] = "printerName";
38 41
39 // Print to PDF option: true if selected, false if not. 42 // Print to PDF option: true if selected, false if not.
40 const char kSettingPrintToPDF[] = "printToPDF"; 43 const char kSettingPrintToPDF[] = "printToPDF";
41 44
42 } // namespace printing 45 } // namespace printing
OLDNEW
« no previous file with comments | « printing/print_job_constants.h ('k') | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698