Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: chrome/browser/ui/gtk/tabs/drag_data.h

Issue 10528002: TabContentsWrapper -> TabContents, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/tab_modal_confirm_dialog_gtk.h ('k') | chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698