Index: blimp/client/core/contents/blimp_contents_manager.cc |
diff --git a/blimp/client/core/contents/blimp_contents_manager.cc b/blimp/client/core/contents/blimp_contents_manager.cc |
index f0a1f6bf560da4167512eb7a99ba49eced4195f3..de9fd4fcebc521f76d4106935ce4d89e5f0d025b 100644 |
--- a/blimp/client/core/contents/blimp_contents_manager.cc |
+++ b/blimp/client/core/contents/blimp_contents_manager.cc |
@@ -51,10 +51,12 @@ BlimpContentsManager::BlimpContentsManager() : weak_ptr_factory_(this) {} |
BlimpContentsManager::~BlimpContentsManager() {} |
-std::unique_ptr<BlimpContentsImpl> BlimpContentsManager::CreateBlimpContents() { |
+std::unique_ptr<BlimpContentsImpl> BlimpContentsManager::CreateBlimpContents( |
+ NavigationFeature* nav_feature, |
+ ImeFeature* ime_feature) { |
int id = CreateBlimpContentsId(); |
std::unique_ptr<BlimpContentsImpl> new_contents = |
- base::MakeUnique<BlimpContentsImpl>(id); |
+ base::MakeUnique<BlimpContentsImpl>(id, nav_feature, ime_feature); |
std::unique_ptr<BlimpContentsDeletionObserver> observer = |
base::MakeUnique<BlimpContentsDeletionObserver>(this, new_contents.get()); |
observer_map_.insert( |