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

Side by Side Diff: printing/print_job_constants.h

Issue 480303002: Use document from preview for System Dialog printing on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tue 08/19/2014 11:17:57.84 Created 6 years, 4 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
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 #ifndef PRINTING_PRINT_JOB_CONSTANTS_H_ 5 #ifndef PRINTING_PRINT_JOB_CONSTANTS_H_
6 #define PRINTING_PRINT_JOB_CONSTANTS_H_ 6 #define PRINTING_PRINT_JOB_CONSTANTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "printing/printing_export.h" 9 #include "printing/printing_export.h"
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[]; 54 PRINTING_EXPORT extern const char kSettingPrintableAreaHeight[];
55 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[]; 55 PRINTING_EXPORT extern const char kSettingPrintableAreaWidth[];
56 PRINTING_EXPORT extern const char kSettingPrintableAreaX[]; 56 PRINTING_EXPORT extern const char kSettingPrintableAreaX[];
57 PRINTING_EXPORT extern const char kSettingPrintableAreaY[]; 57 PRINTING_EXPORT extern const char kSettingPrintableAreaY[];
58 PRINTING_EXPORT extern const char kSettingPrinterDescription[]; 58 PRINTING_EXPORT extern const char kSettingPrinterDescription[];
59 PRINTING_EXPORT extern const char kSettingPrinterName[]; 59 PRINTING_EXPORT extern const char kSettingPrinterName[];
60 PRINTING_EXPORT extern const char kSettingPrinterOptions[]; 60 PRINTING_EXPORT extern const char kSettingPrinterOptions[];
61 PRINTING_EXPORT extern const char kSettingTicket[]; 61 PRINTING_EXPORT extern const char kSettingTicket[];
62 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[]; 62 PRINTING_EXPORT extern const char kSettingShouldPrintBackgrounds[];
63 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[]; 63 PRINTING_EXPORT extern const char kSettingShouldPrintSelectionOnly[];
64 PRINTING_EXPORT extern const char kSettingShowSystemDialog[];
64 65
65 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX; 66 PRINTING_EXPORT extern const int FIRST_PAGE_INDEX;
66 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX; 67 PRINTING_EXPORT extern const int COMPLETE_PREVIEW_DOCUMENT_INDEX;
67 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[]; 68 PRINTING_EXPORT extern const char kSettingOpenPDFInPreview[];
68 69
69 #if defined (USE_CUPS) 70 #if defined (USE_CUPS)
70 // Printer color models 71 // Printer color models
71 PRINTING_EXPORT extern const char kBlack[]; 72 PRINTING_EXPORT extern const char kBlack[];
72 PRINTING_EXPORT extern const char kCMYK[]; 73 PRINTING_EXPORT extern const char kCMYK[];
73 PRINTING_EXPORT extern const char kKCMY[]; 74 PRINTING_EXPORT extern const char kKCMY[];
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not 137 DEFAULT_MARGINS, // Default varies depending on headers being enabled or not
137 NO_MARGINS, 138 NO_MARGINS,
138 PRINTABLE_AREA_MARGINS, 139 PRINTABLE_AREA_MARGINS,
139 CUSTOM_MARGINS, 140 CUSTOM_MARGINS,
140 MARGIN_TYPE_LAST = CUSTOM_MARGINS 141 MARGIN_TYPE_LAST = CUSTOM_MARGINS
141 }; 142 };
142 143
143 } // namespace printing 144 } // namespace printing
144 145
145 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_ 146 #endif // PRINTING_PRINT_JOB_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698