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

Unified Diff: chrome/browser/tab_contents/tab_contents.h

Issue 6334010: Print Preview: Store preview data in the print preview handler.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/tab_contents.h
===================================================================
--- chrome/browser/tab_contents/tab_contents.h (revision 72691)
+++ chrome/browser/tab_contents/tab_contents.h (working copy)
@@ -52,6 +52,7 @@
}
namespace printing {
+class PrintPreviewMessageHandler;
class PrintViewManager;
}
@@ -1109,9 +1110,12 @@
// Registers and unregisters for pref notifications.
PrefChangeRegistrar pref_change_registrar_;
- // Handles print preview and print job for this contents.
+ // Handles print job for this contents.
scoped_ptr<printing::PrintViewManager> printing_;
+ // Handles print preview for this contents.
+ scoped_ptr<printing::PrintPreviewMessageHandler> print_preview_;
+
// SavePackage, lazily created.
scoped_refptr<SavePackage> save_package_;

Powered by Google App Engine
This is Rietveld 408576698