| Index: chrome/browser/tab_contents/web_drag_bookmark_handler_aura.h
|
| diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_aura.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_aura.h
|
| index c830fe3b31b46504e99346434de59276624cce3e..820ec471d8719cdb316cec7892205fa698457392 100644
|
| --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_aura.h
|
| +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_aura.h
|
| @@ -11,7 +11,6 @@
|
| #include "chrome/browser/bookmarks/bookmark_node_data.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 WebDragBookmarkHandlerAura : public content::WebDragDestDelegate {
|
| virtual void OnReceiveDragData(const ui::OSExchangeData& data) OVERRIDE;
|
|
|
| private:
|
| - // The TabContentsWrapper for the drag.
|
| - // 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 active drag. Empty when there is no active drag.
|
| BookmarkNodeData bookmark_drag_data_;
|
|
|