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

Side by Side Diff: printing/print_job_constants.cc

Issue 10873097: Merge 153342 - Print preview: Use an ID instead of memory pointer string in WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1229/src/
Patch Set: Created 8 years, 3 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') | no next file » | 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) 2012 The Chromium Authors. All rights reserved. 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 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 // True if this is the first preview request. 9 // True if this is the first preview request.
10 const char kIsFirstRequest[] = "isFirstRequest"; 10 const char kIsFirstRequest[] = "isFirstRequest";
11 11
12 // Unique ID sent along every preview request. 12 // Unique ID sent along every preview request.
13 const char kPreviewRequestID[] = "requestID"; 13 const char kPreviewRequestID[] = "requestID";
14 14
15 // Unique ID to identify a print preview UI. 15 // Unique ID to identify a print preview UI.
16 const char kPreviewUIAddr[] = "previewUIAddr"; 16 const char kPreviewUIID[] = "previewUIID";
17 17
18 // Print using cloud print: true if selected, false if not. 18 // Print using cloud print: true if selected, false if not.
19 const char kSettingCloudPrintId[] = "cloudPrintID"; 19 const char kSettingCloudPrintId[] = "cloudPrintID";
20 20
21 // Print using cloud print dialog: true if selected, false if not. 21 // Print using cloud print dialog: true if selected, false if not.
22 const char kSettingCloudPrintDialog[] = "printWithCloudPrint"; 22 const char kSettingCloudPrintDialog[] = "printWithCloudPrint";
23 23
24 // Print job setting 'collate'. 24 // Print job setting 'collate'.
25 const char kSettingCollate[] = "collate"; 25 const char kSettingCollate[] = "collate";
26 26
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 const char kGreyscale[] = "Greyscale"; 152 const char kGreyscale[] = "Greyscale";
153 const char kMonochrome[] = "Monochrome"; 153 const char kMonochrome[] = "Monochrome";
154 const char kNormal[] = "Normal"; 154 const char kNormal[] = "Normal";
155 const char kNormalGray[] = "Normal.Gray"; 155 const char kNormalGray[] = "Normal.Gray";
156 const char kRGB[] = "RGB"; 156 const char kRGB[] = "RGB";
157 const char kRGBA[] = "RGBA"; 157 const char kRGBA[] = "RGBA";
158 const char kRGB16[] = "RGB16"; 158 const char kRGB16[] = "RGB16";
159 #endif 159 #endif
160 160
161 } // namespace printing 161 } // namespace printing
OLDNEW
« no previous file with comments | « printing/print_job_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698