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

Unified Diff: chrome/renderer/printing/print_web_view_helper.h

Issue 740983002: Implement window.print() on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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/renderer/printing/print_web_view_helper.h
diff --git a/chrome/renderer/printing/print_web_view_helper.h b/chrome/renderer/printing/print_web_view_helper.h
index f4d7aaa3bf9a72bc40a494123397de8669f7a1f1..64cf584995d1b35b5d34b18c4957991f3ae8f922 100644
--- a/chrome/renderer/printing/print_web_view_helper.h
+++ b/chrome/renderer/printing/print_web_view_helper.h
@@ -169,7 +169,9 @@ class PrintWebViewHelper
// Main printing code -------------------------------------------------------
- void Print(blink::WebLocalFrame* frame, const blink::WebNode& node);
+ void Print(blink::WebLocalFrame* frame,
+ const blink::WebNode& node,
+ const bool use_system_specific_flow = false);
Vitaly Buka (NO REVIEWS) 2014/12/12 08:37:17 rename and remove = false
// Notification when printing is done - signal tear-down/free resources.
void DidFinishPrinting(PrintingResult result);
@@ -200,7 +202,8 @@ class PrintWebViewHelper
// Return false if the user cancels or on error.
bool GetPrintSettingsFromUser(blink::WebFrame* frame,
const blink::WebNode& node,
- int expected_pages_count);
+ int expected_pages_count,
+ const bool use_system_specific_flow);
// Page Printing / Rendering ------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698