Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(751)

Unified Diff: blimp/client/core/contents/blimp_contents_impl.cc

Issue 2292723003: Move remaining Blimp feature code to core. (Closed)
Patch Set: Fixed gn check failure Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698