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

Unified Diff: chrome/browser/ui/gtk/tabs/drag_data.cc

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.h ('k') | chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/tabs/drag_data.cc
diff --git a/chrome/browser/ui/gtk/tabs/drag_data.cc b/chrome/browser/ui/gtk/tabs/drag_data.cc
index dde7e63c47f70865c5fdf8ed6c7d567ed5e56631..5d9d86261d6ac001d221df4e4b17bc88e9d69c41 100644
--- a/chrome/browser/ui/gtk/tabs/drag_data.cc
+++ b/chrome/browser/ui/gtk/tabs/drag_data.cc
@@ -5,7 +5,7 @@
#include "chrome/browser/ui/gtk/tabs/drag_data.h"
#include "chrome/browser/ui/gtk/tabs/tab_gtk.h"
-#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
+#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_delegate.h"
@@ -22,7 +22,7 @@ DraggedTabData::DraggedTabData()
}
DraggedTabData::DraggedTabData(TabGtk* tab,
- TabContentsWrapper* contents,
+ TabContents* contents,
content::WebContentsDelegate* original_delegate,
int source_model_index,
bool pinned,
@@ -95,12 +95,12 @@ int DragData::GetAddTypesForDraggedTabAt(size_t index) {
return add_types;
}
-TabContentsWrapper* DragData::GetSourceTabContentsWrapper() {
+TabContents* DragData::GetSourceTabContents() {
return GetSourceTabData()->contents_;
}
WebContents* DragData::GetSourceWebContents() {
- TabContentsWrapper* contents = GetSourceTabData()->contents_;
+ TabContents* contents = GetSourceTabData()->contents_;
return contents ? contents->web_contents(): NULL;
}
« no previous file with comments | « chrome/browser/ui/gtk/tabs/drag_data.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