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_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
| 11 #include "app/gfx/native_widget_types.h" |
11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
12 #include "base/gfx/native_widget_types.h" | |
13 #include "base/gfx/rect.h" | 13 #include "base/gfx/rect.h" |
14 #include "base/gfx/size.h" | 14 #include "base/gfx/size.h" |
15 #include "chrome/browser/renderer_host/render_view_host_delegate.h" | 15 #include "chrome/browser/renderer_host/render_view_host_delegate.h" |
16 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" | 16 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" |
17 | 17 |
18 class Browser; | 18 class Browser; |
19 class RenderViewHost; | 19 class RenderViewHost; |
20 class RenderWidgetHost; | 20 class RenderWidgetHost; |
21 class RenderWidgetHostView; | 21 class RenderWidgetHostView; |
22 class TabContents; | 22 class TabContents; |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 typedef std::map<int, RenderWidgetHostView*> PendingWidgetViews; | 183 typedef std::map<int, RenderWidgetHostView*> PendingWidgetViews; |
184 PendingWidgetViews pending_widget_views_; | 184 PendingWidgetViews pending_widget_views_; |
185 | 185 |
186 // The page content's intrinsic width. | 186 // The page content's intrinsic width. |
187 int preferred_width_; | 187 int preferred_width_; |
188 | 188 |
189 DISALLOW_COPY_AND_ASSIGN(TabContentsView); | 189 DISALLOW_COPY_AND_ASSIGN(TabContentsView); |
190 }; | 190 }; |
191 | 191 |
192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ | 192 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_H_ |
OLD | NEW |