| Index: chrome/browser/tab_contents/tab_contents_view_mac.h
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents_view_mac.h (revision 92355)
|
| +++ chrome/browser/tab_contents/tab_contents_view_mac.h (working copy)
|
| @@ -12,6 +12,7 @@
|
| #include <vector>
|
|
|
| #include "base/memory/scoped_nsobject.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h"
|
| #include "chrome/browser/ui/cocoa/base_view.h"
|
| #include "content/browser/tab_contents/tab_contents_view.h"
|
| @@ -20,6 +21,7 @@
|
| #include "ui/gfx/size.h"
|
|
|
| @class FocusTracker;
|
| +class RenderViewContextMenuMac;
|
| @class SadTabController;
|
| class SkBitmap;
|
| class TabContentsViewMac;
|
| @@ -137,6 +139,9 @@
|
| // visible.
|
| scoped_nsobject<SadTabController> sad_tab_;
|
|
|
| + // The context menu. Callbacks are asynchronous so we need to keep it around.
|
| + scoped_ptr<RenderViewContextMenuMac> context_menu_;
|
| +
|
| // The page content's intrinsic width.
|
| int preferred_width_;
|
|
|
|
|