Index: content/browser/renderer_host/render_view_host_unittest.cc |
diff --git a/content/browser/renderer_host/render_view_host_unittest.cc b/content/browser/renderer_host/render_view_host_unittest.cc |
index ae6970d23deab5fa00c53cf18e117ca4fa4c6098..8b396b95f570b2b929e03fef94e8590f7cf6081b 100644 |
--- a/content/browser/renderer_host/render_view_host_unittest.cc |
+++ b/content/browser/renderer_host/render_view_host_unittest.cc |
@@ -64,7 +64,8 @@ class RenderViewHostTest : public RenderViewHostImplTestHarness { |
// All about URLs reported by the renderer should get rewritten to about:blank. |
// See RenderViewHost::OnNavigate for a discussion. |
TEST_F(RenderViewHostTest, FilterAbout) { |
- main_test_rfh()->NavigateAndCommitRendererInitiated(1, GURL("about:cache")); |
+ main_test_rfh()->NavigateAndCommitRendererInitiated( |
+ 1, true, GURL("about:cache")); |
ASSERT_TRUE(controller().GetVisibleEntry()); |
EXPECT_EQ(GURL(url::kAboutBlankURL), |
controller().GetVisibleEntry()->GetURL()); |
@@ -234,15 +235,14 @@ TEST_F(RenderViewHostTest, NavigationWithBadHistoryItemFiles) { |
EXPECT_EQ(0, process()->bad_msg_count()); |
main_test_rfh()->SendRendererInitiatedNavigationRequest(url, false); |
main_test_rfh()->PrepareForCommit(); |
- contents()->GetMainFrame()->SendNavigateWithFile(1, url, file_path); |
+ contents()->GetMainFrame()->SendNavigateWithFile(1, 1, true, url, file_path); |
EXPECT_EQ(1, process()->bad_msg_count()); |
ChildProcessSecurityPolicyImpl::GetInstance()->GrantReadFile( |
process()->GetID(), file_path); |
main_test_rfh()->SendRendererInitiatedNavigationRequest(url, false); |
main_test_rfh()->PrepareForCommit(); |
- contents()->GetMainFrame()->SendNavigateWithFile(process()->GetID(), url, |
- file_path); |
+ contents()->GetMainFrame()->SendNavigateWithFile(2, 2, true, url, file_path); |
EXPECT_EQ(1, process()->bad_msg_count()); |
} |