Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: chrome/browser/printing/print_view_manager.h

Issue 149212: Move printing related stuff to the root printing project from the browser pro... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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" 8 #include "base/ref_counted.h"
9 #include "chrome/browser/printing/printed_pages_source.h"
10 #include "chrome/common/notification_registrar.h" 9 #include "chrome/common/notification_registrar.h"
10 #include "printing/printed_pages_source.h"
11 11
12 class RenderViewHost; 12 class RenderViewHost;
13 class TabContents; 13 class TabContents;
14 struct ViewHostMsg_DidPrintPage_Params; 14 struct ViewHostMsg_DidPrintPage_Params;
15 15
16 namespace printing { 16 namespace printing {
17 17
18 class JobEventDetails; 18 class JobEventDetails;
19 class PrintJob; 19 class PrintJob;
20 class PrintJobWorkerOwner; 20 class PrintJobWorkerOwner;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // printing-related behavior. Still, access to the renderer is needed so a 128 // printing-related behavior. Still, access to the renderer is needed so a
129 // back reference is kept the the "parent object". 129 // back reference is kept the the "parent object".
130 TabContents& owner_; 130 TabContents& owner_;
131 131
132 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); 132 DISALLOW_COPY_AND_ASSIGN(PrintViewManager);
133 }; 133 };
134 134
135 } // namespace printing 135 } // namespace printing
136 136
137 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ 137 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698