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

Unified Diff: printing/printing_context.h

Issue 740983002: Implement window.print() on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: WIP - removing enums and new methods 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/printing_context.h
diff --git a/printing/printing_context.h b/printing/printing_context.h
index 0cc4731a19e98169d44b25ad235810dcd0d34818..47148bd4e43a7a5c56accf21ec97d840e514ab1a 100644
--- a/printing/printing_context.h
+++ b/printing/printing_context.h
@@ -38,11 +38,12 @@ class PRINTING_EXPORT PrintingContext {
virtual std::string GetAppLocale() = 0;
};
- // Tri-state result for user behavior-dependent functions.
+ // Result for user behavior-dependent functions.
enum Result {
OK,
CANCEL,
FAILED,
+ SYSTEM_DIALOG_DONE,
};
virtual ~PrintingContext();
@@ -55,8 +56,10 @@ class PRINTING_EXPORT PrintingContext {
// context with the select device settings. The result of the call is returned
// in the callback. This is necessary for Linux, which only has an
// asynchronous printing API.
+ // TODO: doc
virtual void AskUserForSettings(int max_pages,
bool has_selection,
+ bool is_scripted,
const PrintSettingsCallback& callback) = 0;
// Selects the user's default printer and format. Updates the context with the

Powered by Google App Engine
This is Rietveld 408576698