| Index: chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h
|
| diff --git a/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h b/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h
|
| index f9913846340abfbf60dd19bc6b99bad939cbf1d2..f6400a84da68e941194c5394c1468c9cd102ff81 100644
|
| --- a/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.h
|
| +++ b/chrome/browser/tab_contents/web_drag_bookmark_handler_mac.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.
|
| @@ -28,10 +27,10 @@ class WebDragBookmarkHandlerMac : 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.
|
|
|