Chromium Code Reviews| Index: chrome/browser/dom_ui/print_preview_ui.h |
| =================================================================== |
| --- chrome/browser/dom_ui/print_preview_ui.h (revision 72691) |
| +++ chrome/browser/dom_ui/print_preview_ui.h (working copy) |
| @@ -6,16 +6,24 @@ |
| #define CHROME_BROWSER_DOM_UI_PRINT_PREVIEW_UI_H_ |
| #pragma once |
| -#include <string> |
| - |
| #include "chrome/browser/dom_ui/dom_ui.h" |
| +class PrintPreviewHandler; |
| + |
| +namespace base { |
| +class SharedMemory; |
| +} |
|
James Hawkins
2011/01/31 18:39:38
Comment the namespace.
Lei Zhang
2011/01/31 22:15:51
In the last round of style discussion at the begin
|
| + |
| class PrintPreviewUI : public DOMUI { |
| public: |
| explicit PrintPreviewUI(TabContents* contents); |
| virtual ~PrintPreviewUI(); |
| + PrintPreviewHandler* handler(); |
| + |
| private: |
| + PrintPreviewHandler* handler_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(PrintPreviewUI); |
| }; |