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

Unified Diff: chrome/browser/dom_ui/print_preview_handler.cc

Issue 6221005: Print Preview: Store preview data in the print preview controller.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/dom_ui/print_preview_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/print_preview_handler.cc
===================================================================
--- chrome/browser/dom_ui/print_preview_handler.cc (revision 71344)
+++ chrome/browser/dom_ui/print_preview_handler.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -22,9 +22,8 @@
}
void PrintPreviewHandler::HandleGetPreview(const ListValue*) {
- // TODO(thestig) Hook this up properly when PDF generation works.
- StringValue dummy_url("chrome://print/dummy.pdf");
- dom_ui_->CallJavascriptFunction(L"createPDFPlugin", dummy_url);
+ StringValue print_url("chrome://print/print.pdf");
+ dom_ui_->CallJavascriptFunction(L"createPDFPlugin", print_url);
}
void PrintPreviewHandler::HandleGetPrinters(const ListValue*) {
« no previous file with comments | « chrome/browser/browser_process_impl.cc ('k') | chrome/browser/dom_ui/print_preview_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698