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

Unified Diff: chrome/browser/tab_contents/render_view_context_menu.cc

Issue 7202012: Print Preview: Display a throbber when the user requests the system print (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 6 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
Index: chrome/browser/tab_contents/render_view_context_menu.cc
diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc
index 95a7bd360a6d9d1e1a792f3160a56eab95e8a44f..6179d3edf0e388bb464f1247c36b4101223497e0 100644
--- a/chrome/browser/tab_contents/render_view_context_menu.cc
+++ b/chrome/browser/tab_contents/render_view_context_menu.cc
@@ -1384,7 +1384,7 @@ void RenderViewContextMenu::ExecuteCommand(int id) {
if (switches::IsPrintPreviewEnabled())
tab_contents_wrapper->print_view_manager()->PrintPreviewNow();
else
- tab_contents_wrapper->print_view_manager()->PrintNow();
+ tab_contents_wrapper->print_view_manager()->PrintNow(NULL);
} else {
rvh->Send(new PrintMsg_PrintNodeUnderContextMenu(rvh->routing_id()));
}

Powered by Google App Engine
This is Rietveld 408576698