| 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).
|
|
|