| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ | 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ |
| 6 #define CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ | 6 #define CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ |
| 7 | 7 |
| 8 #include "chrome/browser/printing/win_printing_context.h" | 8 #include "printing/printing_context.h" |
| 9 | 9 |
| 10 class MessageLoop; | 10 class MessageLoop; |
| 11 | 11 |
| 12 namespace printing { | 12 namespace printing { |
| 13 | 13 |
| 14 class PrintJobWorker; | 14 class PrintJobWorker; |
| 15 class PrintSettings; | 15 class PrintSettings; |
| 16 | 16 |
| 17 class PrintJobWorkerOwner { | 17 class PrintJobWorkerOwner { |
| 18 public: | 18 public: |
| (...skipping 17 matching lines...) Expand all Loading... |
| 36 // Access the current settings. | 36 // Access the current settings. |
| 37 virtual const PrintSettings& settings() const = 0; | 37 virtual const PrintSettings& settings() const = 0; |
| 38 | 38 |
| 39 // Cookie uniquely identifying the PrintedDocument and/or loaded settings. | 39 // Cookie uniquely identifying the PrintedDocument and/or loaded settings. |
| 40 virtual int cookie() const = 0; | 40 virtual int cookie() const = 0; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } // namespace printing | 43 } // namespace printing |
| 44 | 44 |
| 45 #endif // CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ | 45 #endif // CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ |
| OLD | NEW |