| Index: chrome/browser/ui/webui/print_preview_handler.h
|
| diff --git a/chrome/browser/ui/webui/print_preview_handler.h b/chrome/browser/ui/webui/print_preview_handler.h
|
| index 02324691c708e85f692658e791b27467d2424527..c187239924ac60f6ff0451de3601b9404c6065a2 100644
|
| --- a/chrome/browser/ui/webui/print_preview_handler.h
|
| +++ b/chrome/browser/ui/webui/print_preview_handler.h
|
| @@ -6,6 +6,8 @@
|
| #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_HANDLER_H_
|
| #pragma once
|
|
|
| +#include <string>
|
| +
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "chrome/browser/ui/shell_dialogs.h"
|
| @@ -64,6 +66,10 @@ class PrintPreviewHandler : public WebUIMessageHandler,
|
| // |args| is unused.
|
| void HandleShowSystemDialog(const ListValue* args);
|
|
|
| + // Bring up a web page to allow the user to configure cloud print.
|
| + // |args| is unused.
|
| + void HandleManageCloudPrint(const ListValue* args);
|
| +
|
| // Ask the browser to show the native printer management dialog.
|
| // |args| is unused.
|
| void HandleManagePrinters(const ListValue* args);
|
| @@ -80,7 +86,14 @@ class PrintPreviewHandler : public WebUIMessageHandler,
|
| void SendDefaultPrinter(const StringValue& default_printer);
|
|
|
| // Send the list of printers to the Web UI.
|
| - void SendPrinterList(const ListValue& printers);
|
| + void SetupPrinterList(const ListValue& printers);
|
| +
|
| + // Send whether cloud print integration should be enabled.
|
| + void SendCloudPrintEnabled();
|
| +
|
| + // Send the PDF data to the cloud to print.
|
| + void SendCloudPrintJob(const DictionaryValue& settings,
|
| + std::string print_ticket);
|
|
|
| // Helper function to get the initiator tab for the print preview tab.
|
| TabContents* GetInitiatorTab();
|
|
|