| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ | 5 #ifndef CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ |
| 6 #define CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ | 6 #define CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
| 11 #include "chromeos/printing/printer_configuration.h" | 11 #include "chromeos/printing/printer_configuration.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class DictionaryValue; | 14 class DictionaryValue; |
| 15 class Time; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace chromeos { | 18 namespace chromeos { |
| 18 namespace printing { | 19 namespace printing { |
| 19 | 20 |
| 20 CHROMEOS_EXPORT extern const char kPrinterId[]; | 21 CHROMEOS_EXPORT extern const char kPrinterId[]; |
| 21 | 22 |
| 22 // Returns a new printer populated with the fields from |pref|. Processes | 23 // Returns a new printer populated with the fields from |pref|. Processes |
| 23 // dictionaries from policy i.e. cPanel. | 24 // dictionaries from policy i.e. cPanel. |
| 24 CHROMEOS_EXPORT std::unique_ptr<Printer> RecommendedPrinterToPrinter( | 25 CHROMEOS_EXPORT std::unique_ptr<Printer> RecommendedPrinterToPrinter( |
| 25 const base::DictionaryValue& pref); | 26 const base::DictionaryValue& pref, |
| 27 const base::Time& timestamp); |
| 26 | 28 |
| 27 } // namespace printing | 29 } // namespace printing |
| 28 } // namespace chromeos | 30 } // namespace chromeos |
| 29 | 31 |
| 30 #endif // CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ | 32 #endif // CHROMEOS_PRINTING_PRINTER_TRANSLATOR_H_ |
| OLD | NEW |