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

Side by Side Diff: printing/header_footer_initializer.h

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Moved elide text to print_settings_initializer 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) 2010 The Chromium Authors. All rights reserved.
kmadhusu 2011/08/12 17:07:00 nit: 2011
Aayush Kumar 2011/08/12 18:53:42 Done.
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_HEADER_FOOTER_INITIALIZER_H_
6 #define PRINTING_HEADER_FOOTER_INITIALIZER_H_
7
8 #include "base/logging.h"
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 |header_footer_info|.
20 class HeaderFooterInitializer {
21 public:
22 static void InitHeaderFooterStrings(
23 const base::DictionaryValue& header_footer_info,
24 PrintSettings* print_settings);
25
26 private:
27 DISALLOW_IMPLICIT_CONSTRUCTORS(HeaderFooterInitializer);
28 };
29
30 } // namespace printing
31
32 #endif // PRINTING_HEADER_FOOTER_INITIALIZER_H_
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698