| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_UI_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/ref_counted_memory.h" | 12 #include "base/memory/ref_counted_memory.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "chrome/browser/printing/print_preview_data_service.h" | 14 #include "chrome/browser/printing/print_preview_data_service.h" |
| 15 #include "chrome/browser/ui/webui/chrome_web_ui.h" | 15 #include "chrome/browser/ui/webui/constrained_html_ui.h" |
| 16 | 16 |
| 17 class PrintPreviewDataService; | 17 class PrintPreviewDataService; |
| 18 class PrintPreviewHandler; | 18 class PrintPreviewHandler; |
| 19 struct PrintHostMsg_DidGetPreviewPageCount_Params; | 19 struct PrintHostMsg_DidGetPreviewPageCount_Params; |
| 20 | 20 |
| 21 namespace printing { | 21 namespace printing { |
| 22 struct PageSizeMargins; | 22 struct PageSizeMargins; |
| 23 } | 23 } |
| 24 | 24 |
| 25 class PrintPreviewUI : public ChromeWebUI { | 25 class PrintPreviewUI : public ConstrainedHtmlUI { |
| 26 public: | 26 public: |
| 27 explicit PrintPreviewUI(TabContents* contents); | 27 explicit PrintPreviewUI(TabContents* contents); |
| 28 virtual ~PrintPreviewUI(); | 28 virtual ~PrintPreviewUI(); |
| 29 | 29 |
| 30 // Gets the print preview |data|. |index| is zero-based, and can be | 30 // Gets the print preview |data|. |index| is zero-based, and can be |
| 31 // |printing::COMPLETE_PREVIEW_DOCUMENT_INDEX| to get the entire preview | 31 // |printing::COMPLETE_PREVIEW_DOCUMENT_INDEX| to get the entire preview |
| 32 // document. | 32 // document. |
| 33 void GetPrintPreviewDataForIndex(int index, | 33 void GetPrintPreviewDataForIndex(int index, |
| 34 scoped_refptr<RefCountedBytes>* data); | 34 scoped_refptr<RefCountedBytes>* data); |
| 35 | 35 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 // |preview_request_id| indicates which request resulted in this response. | 93 // |preview_request_id| indicates which request resulted in this response. |
| 94 void OnReusePreviewData(int preview_request_id); | 94 void OnReusePreviewData(int preview_request_id); |
| 95 | 95 |
| 96 // Notifies the Web UI that preview tab is destroyed. This is the last chance | 96 // Notifies the Web UI that preview tab is destroyed. This is the last chance |
| 97 // to communicate with the source tab before the association is erased. | 97 // to communicate with the source tab before the association is erased. |
| 98 void OnTabDestroyed(); | 98 void OnTabDestroyed(); |
| 99 | 99 |
| 100 // Notifies the Web UI that the print preview failed to render. | 100 // Notifies the Web UI that the print preview failed to render. |
| 101 void OnPrintPreviewFailed(); | 101 void OnPrintPreviewFailed(); |
| 102 | 102 |
| 103 // Notified the Web UI that this print preview tab's RenderProcess has been |
| 104 // closed, which may occur for several reasons, e.g. tab closure or crash. |
| 105 void OnPrintPreviewTabClosed(); |
| 106 |
| 103 // Notifies the Web UI that initiator tab is closed, so we can disable all the | 107 // Notifies the Web UI that initiator tab is closed, so we can disable all the |
| 104 // controls that need the initiator tab for generating the preview data. | 108 // controls that need the initiator tab for generating the preview data. |
| 105 void OnInitiatorTabClosed(); | 109 void OnInitiatorTabClosed(); |
| 106 | 110 |
| 107 // Notifies the Web UI that the initiator tab has crashed. | |
| 108 void OnInitiatorTabCrashed(); | |
| 109 | |
| 110 // Notifies the Web UI renderer that file selection has been cancelled. | 111 // Notifies the Web UI renderer that file selection has been cancelled. |
| 111 void OnFileSelectionCancelled(); | 112 void OnFileSelectionCancelled(); |
| 112 | 113 |
| 113 // Notifies the Web UI that the printer is unavailable or its settings are | 114 // Notifies the Web UI that the printer is unavailable or its settings are |
| 114 // invalid. | 115 // invalid. |
| 115 void OnInvalidPrinterSettings(); | 116 void OnInvalidPrinterSettings(); |
| 116 | 117 |
| 117 // Notifies the Web UI to cancel the pending preview request. | 118 // Notifies the Web UI to cancel the pending preview request. |
| 118 void OnCancelPendingPreviewRequest(); | 119 void OnCancelPendingPreviewRequest(); |
| 119 | 120 |
| 121 // Hides the print preview tab. |
| 122 void OnHidePreviewTab(); |
| 123 |
| 124 // Closes the print preview tab. |
| 125 void OnClosePrintPreviewTab(); |
| 126 |
| 127 // Reload the printers list. |
| 128 void OnReloadPrintersList(); |
| 129 |
| 120 private: | 130 private: |
| 121 friend class PrintPreviewHandlerTest; | 131 friend class PrintPreviewHandlerTest; |
| 122 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, StickyMarginsCustom); | 132 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, StickyMarginsCustom); |
| 123 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, StickyMarginsDefault); | 133 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, StickyMarginsDefault); |
| 124 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, | 134 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, |
| 125 StickyMarginsCustomThenDefault); | 135 StickyMarginsCustomThenDefault); |
| 126 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, | 136 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, |
| 127 GetLastUsedMarginSettingsCustom); | 137 GetLastUsedMarginSettingsCustom); |
| 128 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, | 138 FRIEND_TEST_ALL_PREFIXES(PrintPreviewHandlerTest, |
| 129 GetLastUsedMarginSettingsDefault); | 139 GetLastUsedMarginSettingsDefault); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 145 // when the initiator tab is closed/crashed. | 155 // when the initiator tab is closed/crashed. |
| 146 std::string initiator_url_; | 156 std::string initiator_url_; |
| 147 | 157 |
| 148 // Indicates whether the source document can be modified. | 158 // Indicates whether the source document can be modified. |
| 149 bool source_is_modifiable_; | 159 bool source_is_modifiable_; |
| 150 | 160 |
| 151 // Store the initiator tab title, used for populating the print preview tab | 161 // Store the initiator tab title, used for populating the print preview tab |
| 152 // title. | 162 // title. |
| 153 string16 initiator_tab_title_; | 163 string16 initiator_tab_title_; |
| 154 | 164 |
| 165 // Keeps track of whether OnClosePrintPreviewTab() has been called or not. |
| 166 bool tab_closed_; |
| 167 |
| 155 DISALLOW_COPY_AND_ASSIGN(PrintPreviewUI); | 168 DISALLOW_COPY_AND_ASSIGN(PrintPreviewUI); |
| 156 }; | 169 }; |
| 157 | 170 |
| 158 #endif // CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_UI_H_ | 171 #endif // CHROME_BROWSER_UI_WEBUI_PRINT_PREVIEW_UI_H_ |
| OLD | NEW |