| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_GTK_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // opened). |popup_view_| is owned by the TabContents, not the view. | 131 // opened). |popup_view_| is owned by the TabContents, not the view. |
| 132 BlockedPopupContainerViewGtk* popup_view_; | 132 BlockedPopupContainerViewGtk* popup_view_; |
| 133 | 133 |
| 134 // Each individual UI for constrained dialogs currently displayed. The | 134 // Each individual UI for constrained dialogs currently displayed. The |
| 135 // objects in this vector are owned by the TabContents, not the view. | 135 // objects in this vector are owned by the TabContents, not the view. |
| 136 std::vector<ConstrainedWindowGtk*> constrained_windows_; | 136 std::vector<ConstrainedWindowGtk*> constrained_windows_; |
| 137 | 137 |
| 138 // The drop data for the current drag (for drags that originate in the render | 138 // The drop data for the current drag (for drags that originate in the render |
| 139 // view). | 139 // view). |
| 140 scoped_ptr<WebDropData> drop_data_; | 140 scoped_ptr<WebDropData> drop_data_; |
| 141 // The mime type for the file contents of the current drag (if any). |
| 142 GdkAtom drag_file_mime_type_; |
| 141 | 143 |
| 142 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); | 144 DISALLOW_COPY_AND_ASSIGN(TabContentsViewGtk); |
| 143 }; | 145 }; |
| 144 | 146 |
| 145 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ | 147 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_VIEW_GTK_H_ |
| OLD | NEW |