Chromium Code Reviews| Index: blimp/client/core/contents/blimp_contents_impl.cc |
| diff --git a/blimp/client/core/contents/blimp_contents_impl.cc b/blimp/client/core/contents/blimp_contents_impl.cc |
| index 76e486f0a68630842444918a99ba2c8c6e801329..c4ca33f1a7471b4777a50685aae419b4cb2d1aaf 100644 |
| --- a/blimp/client/core/contents/blimp_contents_impl.cc |
| +++ b/blimp/client/core/contents/blimp_contents_impl.cc |
| @@ -24,11 +24,15 @@ const char kBlimpContentsImplAndroidKey[] = "blimp_contents_impl_android"; |
| #endif // OS_ANDROID |
| } |
| -BlimpContentsImpl::BlimpContentsImpl(int id, |
| - ImeFeature* ime_feature, |
| - NavigationFeature* navigation_feature, |
| - TabControlFeature* tab_control_feature) |
| +BlimpContentsImpl::BlimpContentsImpl( |
|
Khushal
2016/08/31 04:30:47
Add a method to show/hide the BlimpContents and fo
David Trainor- moved to gerrit
2016/08/31 05:21:26
Done.
|
| + int id, |
| + BlimpCompositorDependencies* compositor_deps, |
| + ImeFeature* ime_feature, |
| + NavigationFeature* navigation_feature, |
| + RenderWidgetFeature* render_widget_feature, |
| + TabControlFeature* tab_control_feature) |
| : navigation_controller_(this, navigation_feature), |
| + compositor_manager_(render_widget_feature, compositor_deps), |
|
Khushal
2016/08/31 04:30:47
Now that we have this, we can set the layer correc
David Trainor- moved to gerrit
2016/08/31 05:21:27
Done.
|
| id_(id), |
| tab_control_feature_(tab_control_feature) { |
| blimp_contents_view_ = BlimpContentsView::Create(this); |