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

Side by Side Diff: printing/print_job_constants.cc

Issue 478183005: Added PrintingContext::Delegate to get parent view handle and application locale. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mon Aug 25 23:50:54 PDT 2014 Created 6 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') | printing/printing_context.h » ('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) 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 of Print Preview initiator host.
16 const char kPreviewInitiatorHostId[] = "previewInitiatorHostId";
17
18 // Routing ID of Print Preview initiator.
19 const char kPreviewInitiatorRoutingId[] = "previewInitiatorRoutingId";
20
15 // Unique ID to identify a print preview UI. 21 // Unique ID to identify a print preview UI.
16 const char kPreviewUIID[] = "previewUIID"; 22 const char kPreviewUIID[] = "previewUIID";
17 23
18 // Capabilities option. Contains the capabilities in CDD format. 24 // Capabilities option. Contains the capabilities in CDD format.
19 const char kSettingCapabilities[] = "capabilities"; 25 const char kSettingCapabilities[] = "capabilities";
20 26
21 // Print using cloud print: true if selected, false if not. 27 // Print using cloud print: true if selected, false if not.
22 const char kSettingCloudPrintId[] = "cloudPrintID"; 28 const char kSettingCloudPrintId[] = "cloudPrintID";
23 29
24 // Print using cloud print dialog: true if selected, false if not. 30 // Print using cloud print dialog: true if selected, false if not.
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 const char kGreyscale[] = "Greyscale"; 182 const char kGreyscale[] = "Greyscale";
177 const char kMonochrome[] = "Monochrome"; 183 const char kMonochrome[] = "Monochrome";
178 const char kNormal[] = "Normal"; 184 const char kNormal[] = "Normal";
179 const char kNormalGray[] = "Normal.Gray"; 185 const char kNormalGray[] = "Normal.Gray";
180 const char kRGB[] = "RGB"; 186 const char kRGB[] = "RGB";
181 const char kRGBA[] = "RGBA"; 187 const char kRGBA[] = "RGBA";
182 const char kRGB16[] = "RGB16"; 188 const char kRGB16[] = "RGB16";
183 #endif 189 #endif
184 190
185 } // namespace printing 191 } // namespace printing
OLDNEW
« no previous file with comments | « printing/print_job_constants.h ('k') | printing/printing_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698