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_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 | 7 |
8 #include "base/ref_counted.h" | |
9 #include "chrome/browser/printing/printed_pages_source.h" | 8 #include "chrome/browser/printing/printed_pages_source.h" |
10 #include "chrome/common/notification_observer.h" | 9 #include "chrome/common/notification_observer.h" |
| 10 #include "chrome/common/render_messages.h" |
11 | 11 |
12 class RenderViewHost; | 12 class RenderViewHost; |
13 class WebContents; | 13 class WebContents; |
14 struct ViewHostMsg_DidPrintPage_Params; | |
15 | 14 |
16 namespace printing { | 15 namespace printing { |
17 | 16 |
18 class JobEventDetails; | 17 class JobEventDetails; |
19 class PrintJob; | 18 class PrintJob; |
20 class PrintJobWorkerOwner; | 19 class PrintJobWorkerOwner; |
21 | 20 |
22 // Manages the print commands in relation to a WebContents. WebContents | 21 // Manages the print commands in relation to a WebContents. WebContents |
23 // delegates a few printing related commands to this instance. | 22 // delegates a few printing related commands to this instance. |
24 class PrintViewManager : public NotificationObserver, | 23 class PrintViewManager : public NotificationObserver, |
(...skipping 87 matching lines...) Loading... |
112 // while the blocking inner message loop is running. This is useful in cases | 111 // while the blocking inner message loop is running. This is useful in cases |
113 // where the RenderView is about to be destroyed while a printing job isn't | 112 // where the RenderView is about to be destroyed while a printing job isn't |
114 // finished. | 113 // finished. |
115 bool RunInnerMessageLoop(); | 114 bool RunInnerMessageLoop(); |
116 | 115 |
117 // In the case of Scripted Printing, where the renderer is controlling the | 116 // In the case of Scripted Printing, where the renderer is controlling the |
118 // control flow, print_job_ is initialized whenever possible. No-op is | 117 // control flow, print_job_ is initialized whenever possible. No-op is |
119 // print_job_ is initialized. | 118 // print_job_ is initialized. |
120 bool OpportunisticallyCreatePrintJob(int cookie); | 119 bool OpportunisticallyCreatePrintJob(int cookie); |
121 | 120 |
| 121 // Cache the last print settings requested to the renderer. |
| 122 ViewMsg_Print_Params print_params_; |
| 123 |
122 // Manages the low-level talk to the printer. | 124 // Manages the low-level talk to the printer. |
123 scoped_refptr<PrintJob> print_job_; | 125 scoped_refptr<PrintJob> print_job_; |
124 | 126 |
125 // Waiting for print_job_ initialization to be completed to start printing. | 127 // Waiting for print_job_ initialization to be completed to start printing. |
126 // Specifically the DEFAULT_INIT_DONE notification. Set when PrintNow() is | 128 // Specifically the DEFAULT_INIT_DONE notification. Set when PrintNow() is |
127 // called. | 129 // called. |
128 bool waiting_to_print_; | 130 bool waiting_to_print_; |
129 | 131 |
130 // Running an inner message loop inside RenderAllMissingPagesNow(). This means | 132 // Running an inner message loop inside RenderAllMissingPagesNow(). This means |
131 // we are _blocking_ until all the necessary pages have been rendered or the | 133 // we are _blocking_ until all the necessary pages have been rendered or the |
(...skipping 25 matching lines...) Loading... |
157 // printing-related behavior. Still, access to the renderer is needed so a | 159 // printing-related behavior. Still, access to the renderer is needed so a |
158 // back reference is kept the the "parent object". | 160 // back reference is kept the the "parent object". |
159 WebContents& owner_; | 161 WebContents& owner_; |
160 | 162 |
161 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); | 163 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); |
162 }; | 164 }; |
163 | 165 |
164 } // namespace printing | 166 } // namespace printing |
165 | 167 |
166 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ | 168 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ |
OLD | NEW |