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

Side by Side Diff: printing/print_settings_initializer.h

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: New snapshot based on Steve, Kausalya and James' comments. Created 9 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
« no previous file with comments | « printing/print_settings.h ('k') | printing/print_settings_initializer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef PRINTING_PRINT_SETTINGS_INITIALIZER_H_
6 #define PRINTING_PRINT_SETTINGS_INITIALIZER_H_
7
8 #include "base/logging.h"
James Hawkins 2011/08/15 21:41:24 base/basictypes.h
Aayush Kumar 2011/08/15 22:16:56 Done.
9
10 namespace base {
11 class DictionaryValue;
12 }
13
14 namespace printing {
15
16 class PrintSettings;
17
18 // Initializes the header footer strings in the PrintSettings object from the
19 // provided |job_settings|.
20 class PrintSettingsInitializer {
21 public:
22 static void InitHeaderFooterStrings(
23 const base::DictionaryValue& job_settings,
24 PrintSettings* print_settings);
25
26 private:
27 DISALLOW_IMPLICIT_CONSTRUCTORS(PrintSettingsInitializer);
28 };
29
30 } // namespace printing
31
32 #endif // PRINTING_PRINT_SETTINGS_INITIALIZER_H_
33
OLDNEW
« no previous file with comments | « printing/print_settings.h ('k') | printing/print_settings_initializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698