Index: content/browser/frame_host/navigation_controller_impl_unittest.cc |
diff --git a/content/browser/frame_host/navigation_controller_impl_unittest.cc b/content/browser/frame_host/navigation_controller_impl_unittest.cc |
index 4065902154354b2db7a83246067e7badcdbe34c6..6121d1f19ce4fa9a97590146214daca9214e2339 100644 |
--- a/content/browser/frame_host/navigation_controller_impl_unittest.cc |
+++ b/content/browser/frame_host/navigation_controller_impl_unittest.cc |
@@ -2048,7 +2048,7 @@ TEST_F(NavigationControllerTest, NewSubframe) { |
// Prereq: add a subframe with an initial auto-subframe navigation. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName0", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe = |
contents()->GetFrameTree()->root()->child_at(0)->current_frame_host(); |
@@ -2129,7 +2129,7 @@ TEST_F(NavigationControllerTest, AutoSubframe) { |
// Add a subframe and navigate it. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName0", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe = |
contents()->GetFrameTree()->root()->child_at(0)->current_frame_host(); |
@@ -2175,7 +2175,7 @@ TEST_F(NavigationControllerTest, AutoSubframe) { |
// Add a second subframe and navigate. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName1", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe2 = |
contents()->GetFrameTree()->root()->child_at(1)->current_frame_host(); |
@@ -2221,7 +2221,7 @@ TEST_F(NavigationControllerTest, AutoSubframe) { |
// Add a nested subframe and navigate. |
subframe->OnCreateChildFrame(process()->GetNextRoutingID(), |
blink::WebTreeScopeType::Document, std::string(), |
- blink::WebSandboxFlags::None, |
+ "uniqueName2", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe3 = contents() |
->GetFrameTree() |
@@ -2286,7 +2286,7 @@ TEST_F(NavigationControllerTest, BackSubframe) { |
// Prereq: add a subframe with an initial auto-subframe navigation. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName0", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe = |
contents()->GetFrameTree()->root()->child_at(0)->current_frame_host(); |
@@ -3725,7 +3725,7 @@ TEST_F(NavigationControllerTest, SameSubframe) { |
// Add and navigate a subframe that would normally count as in-page. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName0", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe = |
contents()->GetFrameTree()->root()->child_at(0)->current_frame_host(); |
@@ -3892,7 +3892,7 @@ TEST_F(NavigationControllerTest, SubframeWhilePending) { |
// automatically loaded. Auto subframes don't increment the page ID. |
main_test_rfh()->OnCreateChildFrame( |
process()->GetNextRoutingID(), blink::WebTreeScopeType::Document, |
- std::string(), blink::WebSandboxFlags::None, |
+ std::string(), "uniqueName0", blink::WebSandboxFlags::None, |
blink::WebFrameOwnerProperties()); |
RenderFrameHostImpl* subframe = |
contents()->GetFrameTree()->root()->child_at(0)->current_frame_host(); |