Chromium Code Reviews| Index: blimp/client/core/contents/blimp_contents_impl.h |
| diff --git a/blimp/client/core/contents/blimp_contents_impl.h b/blimp/client/core/contents/blimp_contents_impl.h |
| index c08f441a27bc696ffe3064c90ed2cbebbc5a4528..0c6c769fc52ebe31c89b7f8b34945b2e47a2b256 100644 |
| --- a/blimp/client/core/contents/blimp_contents_impl.h |
| +++ b/blimp/client/core/contents/blimp_contents_impl.h |
| @@ -25,6 +25,7 @@ class BlimpContentsImplAndroid; |
| #endif // defined(OS_ANDROID) |
| class BlimpContentsObserver; |
| +class BlimpContentsView; |
| class BlimpNavigationController; |
| class TabControlFeature; |
| @@ -43,6 +44,7 @@ class BlimpContentsImpl : public BlimpContents, |
| BlimpNavigationControllerImpl& GetNavigationController() override; |
| void AddObserver(BlimpContentsObserver* observer) override; |
| void RemoveObserver(BlimpContentsObserver* observer) override; |
| + gfx::NativeView GetNativeView() override; |
| // Check if some observer is in the observer list. |
| bool HasObserver(BlimpContentsObserver* observer); |
| @@ -73,6 +75,8 @@ class BlimpContentsImpl : public BlimpContents, |
| // feature instead of tab control feature. crbug.com/639154. |
| TabControlFeature* tab_control_feature_ = nullptr; |
| + std::unique_ptr<BlimpContentsView> blimp_contents_view_; |
|
nyquist
2016/08/29 23:09:45
Could you add an explanation as to what this is fo
Khushal
2016/08/30 00:51:10
Done.
|
| + |
| DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl); |
| }; |