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

Unified Diff: chrome/browser/printing/print_job_worker.h

Issue 2114583002: Windows: Make it possible to print text with GDI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/printing/print_job_worker.h
diff --git a/chrome/browser/printing/print_job_worker.h b/chrome/browser/printing/print_job_worker.h
index 4bebe01a7cc35ddea91e42e3ca013c16b468d0d6..15bd1156b6332540aed283a39b2b7351c8ad471d 100644
--- a/chrome/browser/printing/print_job_worker.h
+++ b/chrome/browser/printing/print_job_worker.h
@@ -45,12 +45,12 @@ class PrintJobWorker {
// Initializes the print settings. If |ask_user_for_settings| is true, a
// Print... dialog box will be shown to ask the user his preference.
// |is_scripted| should be true for calls coming straight from window.print().
- void GetSettings(
- bool ask_user_for_settings,
- int document_page_count,
- bool has_selection,
- MarginType margin_type,
- bool is_scripted);
+ void GetSettings(bool ask_user_for_settings,
+ int document_page_count,
+ bool has_selection,
+ MarginType margin_type,
+ bool is_scripted,
+ bool is_modifiable);
scottmg 2016/06/30 17:48:30 This is probably just my lack of knowledge of this
Lei Zhang 2016/06/30 22:29:34 I added a comment here. There's several "is_modifi
// Set the new print settings.
void SetSettings(std::unique_ptr<base::DictionaryValue> new_settings);

Powered by Google App Engine
This is Rietveld 408576698