| Index: chrome/browser/printing/printer_query.h
|
| diff --git a/chrome/browser/printing/printer_query.h b/chrome/browser/printing/printer_query.h
|
| index dcb2f6a107803736ddc7054e74cc75adf893267a..c7caaa6a0030c863ec243e6a18a762ff7fb9c387 100644
|
| --- a/chrome/browser/printing/printer_query.h
|
| +++ b/chrome/browser/printing/printer_query.h
|
| @@ -21,7 +21,8 @@ class DictionaryValue;
|
|
|
| namespace printing {
|
|
|
| -class PrintJobWorker;
|
| + class PrintDestinationInterface;
|
| + class PrintJobWorker;
|
|
|
| // Query the printer for settings.
|
| class PrinterQuery : public PrintJobWorkerOwner {
|
| @@ -57,6 +58,9 @@ class PrinterQuery : public PrintJobWorkerOwner {
|
| void SetSettings(const base::DictionaryValue& new_settings,
|
| const base::Closure& callback);
|
|
|
| + // Set a destination for the worker.
|
| + void SetWorkerDestination(PrintDestinationInterface* destination);
|
| +
|
| // Stops the worker thread since the client is done with this object.
|
| void StopWorker();
|
|
|
|
|