Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/ui/webui/print_preview/printer_backend_proxy.h

Issue 2457933004: Register and select printer on click. (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_
6 #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ 6 #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/callback_forward.h"
11 #include "base/values.h" 12 #include "base/values.h"
12 #include "printing/backend/print_backend.h" 13 #include "printing/backend/print_backend.h"
13 14
14 class Profile; 15 class Profile;
15 16
16 namespace printing { 17 namespace printing {
17 18
19 using PrinterSetupCallback =
20 base::Callback<void(std::unique_ptr<base::DictionaryValue>)>;
21
18 // Returns the name of the default printer. 22 // Returns the name of the default printer.
19 std::string GetDefaultPrinterOnBlockingPoolThread(); 23 std::string GetDefaultPrinterOnBlockingPoolThread();
20 24
21 // Returns printers for display in the print dialog. 25 // Returns printers for display in the print dialog.
22 PrinterList EnumeratePrintersOnBlockingPoolThread(Profile* profile); 26 PrinterList EnumeratePrintersOnBlockingPoolThread(Profile* profile);
23 27
28 // Verifies printer setup then retrieves printer capabilities for
Lei Zhang 2016/11/03 23:41:46 Maybe say "Verifies printer setup if needed ..." s
skau 2016/11/04 19:28:59 Done.
29 // |printer_name|. |cb| is called with the capabilities dictionary or nullptr
30 // if one of the steps failed.
31 void ConfigurePrinterAndFetchCapabilities(Profile* profile,
32 const std::string& printer_name,
33 const PrinterSetupCallback& cb);
34
24 } // namespace printing 35 } // namespace printing
25 36
26 #endif // CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_ 37 #endif // CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_PRINTER_BACKEND_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698