| Index: chrome/browser/tab_contents/web_drag_bookmark_handler_win.h
|
| diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h
|
| index 744f9c642a34805f22d60d1ba10001392f2e2a93..77729256e00001b157a25fcb2128a4bb223784ec 100644
|
| --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_win.h
|
| +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_win.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.
|
| @@ -30,10 +29,10 @@ class WebDragBookmarkHandlerWin : public content::WebDragDestDelegate {
|
| 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_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebDragBookmarkHandlerWin);
|
| };
|
|
|