OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Print out color: true for color, false for grayscale. | 9 // Print out color: true for color, false for grayscale. |
10 const char kSettingColor[] = "color"; | 10 const char kSettingColor[] = "color"; |
11 | 11 |
12 // Page orientation: true for landscape, false for portrait. | 12 // Page orientation: true for landscape, false for portrait. |
13 const char kSettingLandscape[] = "landscape"; | 13 const char kSettingLandscape[] = "landscape"; |
14 | 14 |
| 15 // Print job title. |
| 16 const char kSettingPrintJobTitle[] = "printJobTitle"; |
| 17 |
15 } // namespace printing | 18 } // namespace printing |
OLD | NEW |