| Index: chrome/browser/printing/printer_query.cc
|
| diff --git a/chrome/browser/printing/printer_query.cc b/chrome/browser/printing/printer_query.cc
|
| index 6cd11ff067ef9537b1c6ee0131160c8eb8805b1d..a160db38f8ccf321f973008ca316824d741528e1 100644
|
| --- a/chrome/browser/printing/printer_query.cc
|
| +++ b/chrome/browser/printing/printer_query.cc
|
| @@ -75,14 +75,15 @@ void PrinterQuery::GetSettings(
|
| StartWorker(callback);
|
|
|
| // Real work is done in PrintJobWorker::GetSettings().
|
| - is_print_dialog_box_shown_ = ask_user_for_settings == ASK_USER;
|
| worker_->PostTask(FROM_HERE,
|
| base::Bind(&PrintJobWorker::GetSettings,
|
| base::Unretained(worker_.get()),
|
| - is_print_dialog_box_shown_,
|
| + ask_user_for_settings,
|
| expected_page_count,
|
| has_selection,
|
| margin_type));
|
| +
|
| +
|
| }
|
|
|
| void PrinterQuery::SetSettings(scoped_ptr<base::DictionaryValue> new_settings,
|
|
|