OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PREVIEW_TAB_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TAB_CONTROLLER_H_ |
6 #define CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TAB_CONTROLLER_H_ | 6 #define CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TAB_CONTROLLER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 | 9 |
11 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
12 #include "chrome/browser/sessions/session_id.h" | 11 #include "chrome/browser/sessions/session_id.h" |
13 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
14 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
15 | 14 |
16 class GURL; | 15 class GURL; |
17 class TabContents; | 16 class TabContents; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 // Whether the PrintPreviewTabController is in the middle of creating a | 120 // Whether the PrintPreviewTabController is in the middle of creating a |
122 // print preview tab. | 121 // print preview tab. |
123 bool is_creating_print_preview_tab_; | 122 bool is_creating_print_preview_tab_; |
124 | 123 |
125 DISALLOW_COPY_AND_ASSIGN(PrintPreviewTabController); | 124 DISALLOW_COPY_AND_ASSIGN(PrintPreviewTabController); |
126 }; | 125 }; |
127 | 126 |
128 } // namespace printing | 127 } // namespace printing |
129 | 128 |
130 #endif // CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TAB_CONTROLLER_H_ | 129 #endif // CHROME_BROWSER_PRINTING_PRINT_PREVIEW_TAB_CONTROLLER_H_ |
OLD | NEW |