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

Unified Diff: chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h

Issue 10535088: TabContentsWrapper -> TabContents, part 30. (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
Index: chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h
diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h
index db23ba65d2ce82cec23886dfa0a06aba4d12ebd8..f42bfffe72af4377ec40a7b48a97ffa684aa0434 100644
--- a/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h
+++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_gtk.h
@@ -11,7 +11,6 @@
#include "content/public/browser/web_drag_dest_delegate.h"
class TabContents;
-typedef TabContents TabContentsWrapper;
// Chrome needs to intercept content drag events so it can dispatch them to the
// bookmarks and extensions system.
@@ -32,10 +31,10 @@ class WebDragBookmarkHandlerGtk : public content::WebDragDestDelegate {
virtual void OnDragLeave() OVERRIDE;
private:
- // The TabContentsWrapper for |tab_contents_|.
- // Weak reference; may be NULL if the contents aren't contained in a wrapper
- // (e.g. WebUI dialogs).
- TabContentsWrapper* tab_;
+ // The TabContents.
+ // Weak reference; may be NULL if the contents aren't contained in a
+ // TabContents (e.g. WebUI dialogs).
+ TabContents* tab_;
// The bookmark data for the current tab. This will be empty if there is not
// a native bookmark drag (or we haven't gotten the data from the source yet).

Powered by Google App Engine
This is Rietveld 408576698