Updating trunk VERSION from 1010.0 to 1011.0
[chromium-blink-merge.git] / printing / print_settings_initializer.h
blob4897be87e186bf2bb8c0fd1d05a70be67ba4e7ba
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.
5 #ifndef PRINTING_PRINT_SETTINGS_INITIALIZER_H_
6 #define PRINTING_PRINT_SETTINGS_INITIALIZER_H_
8 #include "base/basictypes.h"
9 #include "base/logging.h"
10 #include "printing/printing_export.h"
12 namespace base {
13 class DictionaryValue;
16 namespace printing {
18 class PrintSettings;
20 // Initializes the header footer strings in the PrintSettings object from the
21 // provided |job_settings|.
22 class PRINTING_EXPORT PrintSettingsInitializer {
23 public:
24 static void InitHeaderFooterStrings(
25 const base::DictionaryValue& job_settings,
26 PrintSettings* print_settings);
28 private:
29 DISALLOW_IMPLICIT_CONSTRUCTORS(PrintSettingsInitializer);
32 } // namespace printing
34 #endif // PRINTING_PRINT_SETTINGS_INITIALIZER_H_