| Index: blimp/client/core/contents/blimp_contents_manager_unittest.cc
|
| diff --git a/blimp/client/core/contents/blimp_contents_manager_unittest.cc b/blimp/client/core/contents/blimp_contents_manager_unittest.cc
|
| index 422b77157ef9c49bbfd94dfc69fb02b1109ef2d3..c2a5f781131c33e824310c6b2d1e2f357d04126a 100644
|
| --- a/blimp/client/core/contents/blimp_contents_manager_unittest.cc
|
| +++ b/blimp/client/core/contents/blimp_contents_manager_unittest.cc
|
| @@ -19,7 +19,8 @@ namespace {
|
|
|
| TEST(BlimpContentsManagerUnittest, GetExistingBlimpContents) {
|
| base::MessageLoop loop;
|
| - BlimpContentsManager blimp_contents_manager;
|
| + RenderWidgetFeature feature;
|
| + BlimpContentsManager blimp_contents_manager(true, &feature);
|
|
|
| std::unique_ptr<BlimpContentsImpl> blimp_contents =
|
| blimp_contents_manager.CreateBlimpContents();
|
| @@ -30,7 +31,8 @@ TEST(BlimpContentsManagerUnittest, GetExistingBlimpContents) {
|
| }
|
|
|
| TEST(BlimpContentsManagerUnittest, GetNonExistingBlimpContents) {
|
| - BlimpContentsManager blimp_contents_manager;
|
| + RenderWidgetFeature feature;
|
| + BlimpContentsManager blimp_contents_manager(true, &feature);
|
|
|
| BlimpContentsImpl* existing_contents =
|
| blimp_contents_manager.GetBlimpContents(kDummyTabId);
|
| @@ -39,7 +41,8 @@ TEST(BlimpContentsManagerUnittest, GetNonExistingBlimpContents) {
|
|
|
| TEST(BlimpContentsManagerUnittest, GetDestroyedBlimpContents) {
|
| base::MessageLoop loop;
|
| - BlimpContentsManager blimp_contents_manager;
|
| + RenderWidgetFeature feature;
|
| + BlimpContentsManager blimp_contents_manager(true, &feature);
|
| int id;
|
|
|
| std::unique_ptr<BlimpContentsImpl> blimp_contents =
|
|
|