| 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..6ed8885a5ac8104bebf96467d263323c73d4f8b7 100644
|
| --- a/chrome/browser/printing/print_job_worker.h
|
| +++ b/chrome/browser/printing/print_job_worker.h
|
| @@ -45,12 +45,13 @@ 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);
|
| + // |is_modifiable| implies HTML and not other formats like PDF.
|
| + void GetSettings(bool ask_user_for_settings,
|
| + int document_page_count,
|
| + bool has_selection,
|
| + MarginType margin_type,
|
| + bool is_scripted,
|
| + bool is_modifiable);
|
|
|
| // Set the new print settings.
|
| void SetSettings(std::unique_ptr<base::DictionaryValue> new_settings);
|
|
|