| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ |
| 7 |
| 8 #include <memory> |
| 9 #include <string> |
| 10 |
| 11 #include "base/values.h" |
| 12 #include "printing/backend/print_backend.h" |
| 13 |
| 14 class Profile; |
| 15 |
| 16 namespace printing { |
| 17 |
| 18 // Returns the name of the default printer. |
| 19 std::string GetDefaultPrinterOnBlockingPoolThread(); |
| 20 |
| 21 // Returns printers for display in the print dialog. |
| 22 PrinterList EnumeratePrintersOnBlockingPoolThread(Profile* profile); |
| 23 |
| 24 } // namespace printing |
| 25 |
| 26 #endif // CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ |
| OLD | NEW |