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

Side by Side Diff: printing/print_job_constants.cc

Issue 6775013: PrintPreview: While printing the preview data, set the initiator tab title as print job name. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix a style error Created 9 years, 9 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) 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698