| Index: content/browser/web_contents/navigation_controller_impl_unittest.cc
|
| diff --git a/content/browser/web_contents/navigation_controller_impl_unittest.cc b/content/browser/web_contents/navigation_controller_impl_unittest.cc
|
| index 36e89dafae0325f6dff2d5244ce437cbd757b603..b0b09a544e0d0def241b14566f98b45cf20755cb 100644
|
| --- a/content/browser/web_contents/navigation_controller_impl_unittest.cc
|
| +++ b/content/browser/web_contents/navigation_controller_impl_unittest.cc
|
| @@ -1543,7 +1543,7 @@ TEST_F(NavigationControllerTest, RestoreNavigate) {
|
| entry->SetContentState("state");
|
| entries.push_back(entry);
|
| WebContentsImpl our_contents(
|
| - browser_context(), NULL, MSG_ROUTING_NONE, NULL, NULL);
|
| + browser_context(), NULL, MSG_ROUTING_NONE, NULL, NULL, NULL);
|
| NavigationControllerImpl& our_controller = our_contents.GetControllerImpl();
|
| our_controller.Restore(0, true, &entries);
|
| ASSERT_EQ(0u, entries.size());
|
| @@ -1610,7 +1610,7 @@ TEST_F(NavigationControllerTest, RestoreNavigateAfterFailure) {
|
| entry->SetContentState("state");
|
| entries.push_back(entry);
|
| WebContentsImpl our_contents(
|
| - browser_context(), NULL, MSG_ROUTING_NONE, NULL, NULL);
|
| + browser_context(), NULL, MSG_ROUTING_NONE, NULL, NULL, NULL);
|
| NavigationControllerImpl& our_controller = our_contents.GetControllerImpl();
|
| our_controller.Restore(0, true, &entries);
|
| ASSERT_EQ(0u, entries.size());
|
|
|