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 #include "chrome/browser/ui/webui/print_preview_ui.h" | 5 #include "chrome/browser/ui/webui/print_preview_ui.h" |
6 | 6 |
| 7 #include "base/string_util.h" |
7 #include "base/values.h" | 8 #include "base/values.h" |
| 9 #include "chrome/browser/printing/print_preview_data_service.h" |
8 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/ui/webui/print_preview_data_source.h" |
9 #include "chrome/browser/ui/webui/print_preview_handler.h" | 12 #include "chrome/browser/ui/webui/print_preview_handler.h" |
10 #include "chrome/browser/ui/webui/print_preview_ui_html_source.h" | |
11 #include "content/browser/browser_thread.h" | |
12 #include "content/browser/tab_contents/tab_contents.h" | 13 #include "content/browser/tab_contents/tab_contents.h" |
13 | 14 |
14 PrintPreviewUI::PrintPreviewUI(TabContents* contents) | 15 PrintPreviewUI::PrintPreviewUI(TabContents* contents) : WebUI(contents) { |
15 : WebUI(contents), | |
16 html_source_(new PrintPreviewUIHTMLSource()) { | |
17 // PrintPreviewUI owns |handler|. | 16 // PrintPreviewUI owns |handler|. |
18 PrintPreviewHandler* handler = new PrintPreviewHandler(); | 17 PrintPreviewHandler* handler = new PrintPreviewHandler(); |
19 AddMessageHandler(handler->Attach(this)); | 18 AddMessageHandler(handler->Attach(this)); |
20 | 19 |
21 // Set up the chrome://print/ source. | 20 // Set up the chrome://print/ data source. |
22 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source_); | 21 contents->profile()->GetChromeURLDataManager()->AddDataSource( |
| 22 new PrintPreviewDataSource()); |
| 23 |
| 24 // Store the PrintPreviewUIAddress as a string. |
| 25 // "0x" + deadc0de + '\0' = 2 + 2 * sizeof(this) + 1; |
| 26 char preview_ui_addr[2 + (2 * sizeof(this)) + 1]; |
| 27 base::snprintf(preview_ui_addr, sizeof(preview_ui_addr), "%p", this); |
| 28 preview_ui_addr_str_ = preview_ui_addr; |
23 } | 29 } |
24 | 30 |
25 PrintPreviewUI::~PrintPreviewUI() { | 31 PrintPreviewUI::~PrintPreviewUI() { |
| 32 print_preview_data_service()->RemoveEntry(preview_ui_addr_str_); |
26 } | 33 } |
27 | 34 |
28 PrintPreviewUIHTMLSource* PrintPreviewUI::html_source() { | 35 void PrintPreviewUI::GetPrintPreviewData(scoped_refptr<RefCountedBytes>* data) { |
29 return html_source_.get(); | 36 print_preview_data_service()->GetDataEntry(preview_ui_addr_str_, data); |
| 37 } |
| 38 |
| 39 void PrintPreviewUI::SetPrintPreviewData(const RefCountedBytes* data) { |
| 40 print_preview_data_service()->SetDataEntry(preview_ui_addr_str_, data); |
30 } | 41 } |
31 | 42 |
32 void PrintPreviewUI::OnInitiatorTabClosed( | 43 void PrintPreviewUI::OnInitiatorTabClosed( |
33 const std::string& initiator_url) { | 44 const std::string& initiator_url) { |
34 StringValue initiator_tab_url(initiator_url); | 45 StringValue initiator_tab_url(initiator_url); |
35 CallJavascriptFunction("onInitiatorTabClosed", initiator_tab_url); | 46 CallJavascriptFunction("onInitiatorTabClosed", initiator_tab_url); |
36 } | 47 } |
37 | 48 |
38 void PrintPreviewUI::OnPreviewDataIsAvailable(int expected_pages_count, | 49 void PrintPreviewUI::OnPreviewDataIsAvailable(int expected_pages_count, |
39 const string16& job_title, | 50 const string16& job_title, |
40 bool modifiable) { | 51 bool modifiable) { |
41 VLOG(1) << "Print preview request finished with " | 52 VLOG(1) << "Print preview request finished with " |
42 << expected_pages_count << " pages"; | 53 << expected_pages_count << " pages"; |
43 FundamentalValue pages_count(expected_pages_count); | 54 FundamentalValue pages_count(expected_pages_count); |
44 StringValue title(job_title); | 55 StringValue title(job_title); |
45 FundamentalValue is_preview_modifiable(modifiable); | 56 FundamentalValue is_preview_modifiable(modifiable); |
| 57 StringValue ui_identifier(preview_ui_addr_str_); |
46 CallJavascriptFunction("updatePrintPreview", pages_count, title, | 58 CallJavascriptFunction("updatePrintPreview", pages_count, title, |
47 is_preview_modifiable); | 59 is_preview_modifiable, ui_identifier); |
48 } | 60 } |
| 61 |
| 62 PrintPreviewDataService* PrintPreviewUI::print_preview_data_service() { |
| 63 return PrintPreviewDataService::GetInstance(); |
| 64 } |
OLD | NEW |