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

Unified Diff: blimp/client/core/contents/blimp_contents_manager.h

Issue 2258563003: Added features to BlimpClientContext and BlimpContents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ime_feature_move
Patch Set: Register features 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_manager.h
diff --git a/blimp/client/core/contents/blimp_contents_manager.h b/blimp/client/core/contents/blimp_contents_manager.h
index 77f1bfd4ed804bbbc110671c66e846c0f80f6018..9b58e76186bb9cd19145a2b6161ca04b2639c05f 100644
--- a/blimp/client/core/contents/blimp_contents_manager.h
+++ b/blimp/client/core/contents/blimp_contents_manager.h
@@ -17,7 +17,9 @@ class TabControlFeature;
// monitor the life time of the contents it creates.
class BlimpContentsManager {
public:
- explicit BlimpContentsManager(TabControlFeature* tab_control_feature);
+ explicit BlimpContentsManager(ImeFeature* ime_feature,
+ NavigationFeature* nav_feature,
+ TabControlFeature* tab_control_feature);
~BlimpContentsManager();
// Builds a BlimpContentsImpl and notifies the engine.
@@ -49,7 +51,9 @@ class BlimpContentsManager {
// lifetime of the observers.
std::map<int, std::unique_ptr<BlimpContentsDeletionObserver>> observer_map_;
- TabControlFeature* tab_control_feature_ = nullptr;
+ ImeFeature* ime_feature_;
+ NavigationFeature* navigation_feature_;
+ TabControlFeature* tab_control_feature_;
base::WeakPtrFactory<BlimpContentsManager> weak_ptr_factory_;
« no previous file with comments | « blimp/client/core/contents/blimp_contents_impl_unittest.cc ('k') | blimp/client/core/contents/blimp_contents_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698