| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_TABS_DRAG_DATA_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_TABS_DRAG_DATA_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_TABS_DRAG_DATA_H_ | 6 #define CHROME_BROWSER_UI_GTK_TABS_DRAG_DATA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 | 12 |
| 13 class TabContentsWrapper; | 13 class TabContents; |
| 14 typedef TabContents TabContentsWrapper; |
| 14 class TabGtk; | 15 class TabGtk; |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 class WebContents; | 18 class WebContents; |
| 18 class WebContentsDelegate; | 19 class WebContentsDelegate; |
| 19 } | 20 } |
| 20 | 21 |
| 21 struct DraggedTabData { | 22 struct DraggedTabData { |
| 22 public: | 23 public: |
| 23 DraggedTabData(); | 24 DraggedTabData(); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 int source_tab_index_; | 107 int source_tab_index_; |
| 107 // Number of non mini tabs within |drag_data_|. | 108 // Number of non mini tabs within |drag_data_|. |
| 108 int non_mini_tab_count_; | 109 int non_mini_tab_count_; |
| 109 // Number of mini tabs within |drag_data_|. | 110 // Number of mini tabs within |drag_data_|. |
| 110 int mini_tab_count_; | 111 int mini_tab_count_; |
| 111 | 112 |
| 112 DISALLOW_COPY_AND_ASSIGN(DragData); | 113 DISALLOW_COPY_AND_ASSIGN(DragData); |
| 113 }; | 114 }; |
| 114 | 115 |
| 115 #endif // CHROME_BROWSER_UI_GTK_TABS_DRAG_DATA_H_ | 116 #endif // CHROME_BROWSER_UI_GTK_TABS_DRAG_DATA_H_ |
| OLD | NEW |