Chromium Code Reviews| Index: content/browser/web_contents/web_contents_view_aura.h |
| =================================================================== |
| --- content/browser/web_contents/web_contents_view_aura.h (revision 168290) |
| +++ content/browser/web_contents/web_contents_view_aura.h (working copy) |
| @@ -38,6 +38,9 @@ |
| WebContentsViewDelegate* delegate); |
| private: |
| + class WindowObserver; |
| + friend class WindowObserver; |
|
sky
2012/11/19 15:04:54
nit: you don't need to friend inner classes. Inner
jam
2012/11/19 18:53:06
Done.
|
| + |
| virtual ~WebContentsViewAura(); |
| void SizeChangedCommon(const gfx::Size& size); |
| @@ -122,6 +125,8 @@ |
| scoped_ptr<aura::Window> window_; |
| + scoped_ptr<WindowObserver> window_observer_; |
| + |
| // The WebContentsImpl whose contents we display. |
| WebContentsImpl* web_contents_; |