| Index: blimp/client/core/contents/blimp_contents_impl_unittest.cc | 
| diff --git a/blimp/client/core/contents/blimp_contents_impl_unittest.cc b/blimp/client/core/contents/blimp_contents_impl_unittest.cc | 
| index 31c5f866a23ff1b97f1ffca84dbad6e39fca30a8..82345d8341c8e998b1377d6383616848b9b58ad1 100644 | 
| --- a/blimp/client/core/contents/blimp_contents_impl_unittest.cc | 
| +++ b/blimp/client/core/contents/blimp_contents_impl_unittest.cc | 
| @@ -27,7 +27,7 @@ namespace { | 
|  | 
| const char kExampleURL[] = "https://www.example.com/"; | 
| const char kOtherExampleURL[] = "https://www.otherexample.com/"; | 
| -const int kDummyTabId = 0; | 
| +const int kDummyBlimpContentsId = 0; | 
|  | 
| class MockBlimpContentsObserver : public BlimpContentsObserver { | 
| public: | 
| @@ -75,9 +75,9 @@ TEST_F(BlimpContentsImplTest, LoadURLAndNotifyObservers) { | 
| RenderWidgetFeature render_widget_feature; | 
| BlimpCompositorDependencies compositor_deps( | 
| base::MakeUnique<MockCompositorDependencies>()); | 
| -  BlimpContentsImpl blimp_contents(kDummyTabId, window_, &compositor_deps, | 
| -                                   &ime_feature, &navigation_feature, | 
| -                                   &render_widget_feature, nullptr); | 
| +  BlimpContentsImpl blimp_contents( | 
| +      kDummyBlimpContentsId, window_, &compositor_deps, &ime_feature, | 
| +      &navigation_feature, &render_widget_feature, nullptr); | 
|  | 
| BlimpNavigationControllerImpl& navigation_controller = | 
| blimp_contents.GetNavigationController(); | 
| @@ -114,7 +114,7 @@ TEST_F(BlimpContentsImplTest, SetSizeAndScaleThroughTabControlFeature) { | 
| BlimpCompositorDependencies compositor_deps( | 
| base::MakeUnique<MockCompositorDependencies>()); | 
| BlimpContentsImpl blimp_contents( | 
| -      kDummyTabId, window_, &compositor_deps, &ime_feature, nullptr, | 
| +      kDummyBlimpContentsId, window_, &compositor_deps, &ime_feature, nullptr, | 
| &render_widget_feature, &tab_control_feature); | 
|  | 
| EXPECT_CALL(tab_control_feature, | 
|  |