| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "chrome/browser/tab_contents/tab_contents_view.h" | 12 #include "chrome/browser/tab_contents/tab_contents_view.h" |
| 13 #include "gfx/size.h" | 13 #include "ui/gfx/size.h" |
| 14 #include "views/widget/widget_gtk.h" | 14 #include "views/widget/widget_gtk.h" |
| 15 | 15 |
| 16 class ConstrainedWindowGtk; | 16 class ConstrainedWindowGtk; |
| 17 typedef struct _GtkFloatingContainer GtkFloatingContainer; | 17 typedef struct _GtkFloatingContainer GtkFloatingContainer; |
| 18 class RenderViewContextMenuViews; | 18 class RenderViewContextMenuViews; |
| 19 class SadTabView; | 19 class SadTabView; |
| 20 class SkBitmap; | 20 class SkBitmap; |
| 21 class TabContentsDragSource; | 21 class TabContentsDragSource; |
| 22 class WebDragDestGtk; | 22 class WebDragDestGtk; |
| 23 namespace gfx { | 23 namespace gfx { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 gfx::Size size_; | 134 gfx::Size size_; |
| 135 | 135 |
| 136 // Each individual UI for constrained dialogs currently displayed. The | 136 // Each individual UI for constrained dialogs currently displayed. The |
| 137 // objects in this vector are owned by the TabContents, not the view. | 137 // objects in this vector are owned by the TabContents, not the view. |
| 138 std::vector<ConstrainedWindowGtk*> constrained_windows_; | 138 std::vector<ConstrainedWindowGtk*> constrained_windows_; |
| 139 | 139 |
| 140 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); | 140 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 143 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| OLD | NEW |