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

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: Added SK_API to vector platform device skia 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
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/basictypes.h"
9 #include "base/logging.h"
10
11 namespace base {
12 class DictionaryValue;
13 }
14
15 namespace printing {
16
17 class PrintSettings;
18
19 // Initializes the header footer strings in the PrintSettings object from the
20 // provided |job_settings|.
21 class PrintSettingsInitializer {
22 public:
23 static void InitHeaderFooterStrings(
24 const base::DictionaryValue& job_settings,
25 PrintSettings* print_settings);
26
27 private:
28 DISALLOW_IMPLICIT_CONSTRUCTORS(PrintSettingsInitializer);
29 };
30
31 } // namespace printing
32
33 #endif // PRINTING_PRINT_SETTINGS_INITIALIZER_H_
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698