| OLD | NEW |
| 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 kPreviewUIID[] = "previewUIID"; | 16 const char kPreviewUIID[] = "previewUIID"; |
| 17 | 17 |
| 18 // Capabilities option. Contains the capabilities in CDD format. |
| 19 const char kSettingCapabilities[] = "capabilities"; |
| 20 |
| 18 // Print using cloud print: true if selected, false if not. | 21 // Print using cloud print: true if selected, false if not. |
| 19 const char kSettingCloudPrintId[] = "cloudPrintID"; | 22 const char kSettingCloudPrintId[] = "cloudPrintID"; |
| 20 | 23 |
| 21 // Print using cloud print dialog: true if selected, false if not. | 24 // Print using cloud print dialog: true if selected, false if not. |
| 22 const char kSettingCloudPrintDialog[] = "printWithCloudPrint"; | 25 const char kSettingCloudPrintDialog[] = "printWithCloudPrint"; |
| 23 | 26 |
| 24 // Print job setting 'collate'. | 27 // Print job setting 'collate'. |
| 25 const char kSettingCollate[] = "collate"; | 28 const char kSettingCollate[] = "collate"; |
| 26 | 29 |
| 27 // Print out color: true for color, false for grayscale. | 30 // Print out color: true for color, false for grayscale. |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 const char kGreyscale[] = "Greyscale"; | 158 const char kGreyscale[] = "Greyscale"; |
| 156 const char kMonochrome[] = "Monochrome"; | 159 const char kMonochrome[] = "Monochrome"; |
| 157 const char kNormal[] = "Normal"; | 160 const char kNormal[] = "Normal"; |
| 158 const char kNormalGray[] = "Normal.Gray"; | 161 const char kNormalGray[] = "Normal.Gray"; |
| 159 const char kRGB[] = "RGB"; | 162 const char kRGB[] = "RGB"; |
| 160 const char kRGBA[] = "RGBA"; | 163 const char kRGBA[] = "RGBA"; |
| 161 const char kRGB16[] = "RGB16"; | 164 const char kRGB16[] = "RGB16"; |
| 162 #endif | 165 #endif |
| 163 | 166 |
| 164 } // namespace printing | 167 } // namespace printing |
| OLD | NEW |