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

Unified Diff: chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h

Issue 10545115: TabContentsWrapper -> TabContents, part 41. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/gtk/tabs/drag_data.cc ('k') | chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h
diff --git a/chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h b/chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h
index 4e779422566c84a9ad3b56905cea240d2e0b7111..7ae1cfc09c9f86388458a00e3e2de3050c1bb1d8 100644
--- a/chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h
+++ b/chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h
@@ -27,7 +27,6 @@ class TabGtk;
class TabStripGtk;
class TabStripModel;
class TabContents;
-typedef TabContents TabContentsWrapper;
class DraggedTabControllerGtk : public content::NotificationObserver,
public content::WebContentsDelegate {
@@ -65,7 +64,7 @@ class DraggedTabControllerGtk : public content::NotificationObserver,
bool IsDraggingTab(const TabGtk* tab);
// Returns true if |tab_contents| matches any tab contents being dragged.
- bool IsDraggingTabContents(const TabContentsWrapper* tab_contents);
+ bool IsDraggingTabContents(const TabContents* tab_contents);
// Returns true if the specified tab is detached.
bool IsTabDetached(const TabGtk* tab);
@@ -155,12 +154,12 @@ class DraggedTabControllerGtk : public content::NotificationObserver,
gfx::Point GetDraggedViewPoint(const gfx::Point& screen_point);
// Finds the Tab within the specified TabStrip that corresponds to the
- // dragged TabContentsWrapper.
+ // dragged TabContents.
TabGtk* GetTabMatchingDraggedContents(TabStripGtk* tabstrip,
- TabContentsWrapper* contents);
+ TabContents* contents);
// Finds all the tabs within the specified TabStrip that correspond to the
- // dragged TabContentsWrapper.
+ // dragged TabContents.
std::vector<TabGtk*> GetTabsMatchingDraggedContents(TabStripGtk* tabstrip);
// Sets the visible and draggging property of all dragged tabs. If |repaint|
@@ -178,7 +177,7 @@ class DraggedTabControllerGtk : public content::NotificationObserver,
// be destroyed immediately, false otherwise.
bool CompleteDrag();
- // Resets the delegates of the TabContentsWrapper.
+ // Resets the delegates of the TabContents.
void ResetDelegates();
// Create the DraggedViewGtk if it does not yet exist.
« no previous file with comments | « chrome/browser/ui/gtk/tabs/drag_data.cc ('k') | chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698