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_VIEW_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ |
6 #define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ | 6 #define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
11 #include "content/browser/tab_contents/tab_contents_observer.h" | 11 #include "content/browser/tab_contents/tab_contents_observer.h" |
12 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
13 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
14 #include "printing/printed_pages_source.h" | 14 #include "printing/printed_pages_source.h" |
15 | 15 |
16 class RenderViewHost; | |
17 class TabContentsWrapper; | 16 class TabContentsWrapper; |
18 struct PrintHostMsg_DidPrintPage_Params; | 17 struct PrintHostMsg_DidPrintPage_Params; |
19 | 18 |
20 namespace printing { | 19 namespace printing { |
21 | 20 |
22 class JobEventDetails; | 21 class JobEventDetails; |
23 class PrintJob; | 22 class PrintJob; |
24 class PrintJobWorkerOwner; | 23 class PrintJobWorkerOwner; |
25 class PrintViewManagerObserver; | 24 class PrintViewManagerObserver; |
26 | 25 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 177 |
179 // The document cookie of the current PrinterQuery. | 178 // The document cookie of the current PrinterQuery. |
180 int cookie_; | 179 int cookie_; |
181 | 180 |
182 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); | 181 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); |
183 }; | 182 }; |
184 | 183 |
185 } // namespace printing | 184 } // namespace printing |
186 | 185 |
187 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ | 186 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ |
OLD | NEW |