| Index: chrome/browser/ui/webui/print_preview_handler.cc
|
| diff --git a/chrome/browser/ui/webui/print_preview_handler.cc b/chrome/browser/ui/webui/print_preview_handler.cc
|
| index 009684067e4ce1bb502a95af6092672f53ff556a..5beef4c020d25f0930ab9f190d23a2b1bef4c1a1 100644
|
| --- a/chrome/browser/ui/webui/print_preview_handler.cc
|
| +++ b/chrome/browser/ui/webui/print_preview_handler.cc
|
| @@ -489,6 +489,16 @@ void PrintPreviewHandler::HandleGetPreview(const ListValue* args) {
|
| print_preview_ui->OnPrintPreviewFailed();
|
| return;
|
| }
|
| +
|
| + // Retrieve the page title and url and send it to the renderer process.
|
| + settings->SetString(printing::kSettingHeaderFooterTitle,
|
| + initiator_tab->GetTitle());
|
| + std::string url;
|
| + NavigationEntry* entry = initiator_tab->controller().GetActiveEntry();
|
| + if (entry)
|
| + url = entry->virtual_url().spec();
|
| + settings->SetString(printing::kSettingHeaderFooterURL, url);
|
| +
|
| VLOG(1) << "Print preview request start";
|
| RenderViewHost* rvh = initiator_tab->render_view_host();
|
| rvh->Send(new PrintMsg_PrintPreview(rvh->routing_id(), *settings));
|
|
|