| 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 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 Loading... |
| 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 |
| OLD | NEW |