[Telemetry] Split top_25 to top_25_smooth and top_25_repaint
[chromium-blink-merge.git] / printing / print_settings_conversion.h
blob92e8670c06e6bd4a41322d42e77e09b8e759f1e6
1 // Copyright 2014 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_CONVERSION_H_
6 #define PRINTING_PRINT_SETTINGS_CONVERSION_H_
8 #include "base/basictypes.h"
9 #include "base/logging.h"
10 #include "printing/page_range.h"
11 #include "printing/printing_export.h"
13 namespace base {
14 class DictionaryValue;
17 namespace printing {
19 class PrintSettings;
21 bool PrintSettingsFromJobSettings(const base::DictionaryValue& job_settings,
22 PrintSettings* print_settings);
24 // Use for debug only, because output is not completely consistent with format
25 // of |PrintSettingsFromJobSettings| input.
26 void PrintSettingsToJobSettingsDebug(const PrintSettings& settings,
27 base::DictionaryValue* job_settings);
29 } // namespace printing
31 #endif // PRINTING_PRINT_SETTINGS_CONVERSION_H_