OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | |
8 | 7 |
9 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
10 #include "printing/printing_context.h" | 9 #include "printing/printing_context.h" |
11 | 10 |
12 class MessageLoop; | 11 class MessageLoop; |
13 | 12 |
14 namespace printing { | 13 namespace printing { |
15 | 14 |
16 class PrintJobWorker; | 15 class PrintJobWorker; |
17 class PrintSettings; | 16 class PrintSettings; |
(...skipping 21 matching lines...) Expand all Loading... |
39 | 38 |
40 protected: | 39 protected: |
41 friend class base::RefCountedThreadSafe<PrintJobWorkerOwner>; | 40 friend class base::RefCountedThreadSafe<PrintJobWorkerOwner>; |
42 | 41 |
43 virtual ~PrintJobWorkerOwner() {} | 42 virtual ~PrintJobWorkerOwner() {} |
44 }; | 43 }; |
45 | 44 |
46 } // namespace printing | 45 } // namespace printing |
47 | 46 |
48 #endif // CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ | 47 #endif // CHROME_BROWSER_PRINTING_PRINT_JOB_WORKER_OWNER_H__ |
OLD | NEW |