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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: printing/header_footer_initializer.h
diff --git a/printing/header_footer_initializer.h b/printing/header_footer_initializer.h
new file mode 100644
index 0000000000000000000000000000000000000000..43124413c418ddda419444270f71cd95c6d12dc2
--- /dev/null
+++ b/printing/header_footer_initializer.h
@@ -0,0 +1,33 @@
+// 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.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PRINTING_HEADER_FOOTER_INITIALIZER_H_
+#define PRINTING_HEADER_FOOTER_INITIALIZER_H_
+
+#include "base/logging.h"
+
+namespace base {
+class DictionaryValue;
+}
+
+namespace printing {
+
+class PrintSettings;
+
+// Initializes the header footer strings in the PrintSettings object from the
+// provided |header_footer_info|.
+class HeaderFooterInitializer {
+ public:
+ static void InitHeaderFooterStrings(
+ const base::DictionaryValue& header_footer_info,
+ PrintSettings* print_settings);
+
+ private:
+ DISALLOW_IMPLICIT_CONSTRUCTORS(HeaderFooterInitializer);
+};
+
+} // namespace printing
+
+#endif // PRINTING_HEADER_FOOTER_INITIALIZER_H_
+

Powered by Google App Engine
This is Rietveld 408576698