| 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 c9c30cd01eda3891cb73934312a7d1cb740ebaf9..c7ae2fac04767f2bfb8d9be9509dfd7b4bfb3f0c 100644
|
| --- a/blimp/client/core/contents/blimp_contents_impl.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_impl.cc
|
| @@ -36,14 +36,17 @@ BlimpContentsImpl::BlimpContentsImpl(
|
| : navigation_controller_(this, navigation_feature),
|
| compositor_manager_(render_widget_feature, compositor_deps),
|
| id_(id),
|
| + ime_feature_(ime_feature),
|
| window_(window),
|
| tab_control_feature_(tab_control_feature) {
|
| blimp_contents_view_ =
|
| BlimpContentsView::Create(this, compositor_manager_.layer());
|
| + ime_feature_->set_delegate(blimp_contents_view_->GetImeDelegate());
|
| }
|
|
|
| BlimpContentsImpl::~BlimpContentsImpl() {
|
| FOR_EACH_OBSERVER(BlimpContentsObserver, observers_, BlimpContentsDying());
|
| + ime_feature_->set_delegate(nullptr);
|
| }
|
|
|
| #if defined(OS_ANDROID)
|
|
|