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

Unified Diff: printing/android/java/src/org/chromium/printing/PrintingContextInterface.java

Issue 740983002: Implement window.print() on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: printing/android/java/src/org/chromium/printing/PrintingContextInterface.java
diff --git a/printing/android/java/src/org/chromium/printing/PrintingContextInterface.java b/printing/android/java/src/org/chromium/printing/PrintingContextInterface.java
index 80369b35cdf5efc42a1f360fa58b318bce346f20..3bc3e82650795cbb59fd03a3c14a3a8a8b9a4a53 100644
--- a/printing/android/java/src/org/chromium/printing/PrintingContextInterface.java
+++ b/printing/android/java/src/org/chromium/printing/PrintingContextInterface.java
@@ -21,4 +21,10 @@ public interface PrintingContextInterface {
* @param success True if the settings are successfully prepared to be used by the native side.
*/
void askUserForSettingsReply(boolean success);
+
+ /**
+ * Notifies the native side that the printing process is completed. This method should be
+ * called when the process was initiated by the native side (window.print())
+ */
+ void showSystemDialogDone();
}

Powered by Google App Engine
This is Rietveld 408576698