Chromium Code Reviews| 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_ |
| + |