| 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 e0f6144a24d8b927361eca2dfb713dfddb48d01e..3b00dfbcc127d1daa8060cd80f1528ca1dbb683a 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(); | 
| @@ -3720,7 +3720,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(); | 
| @@ -3887,7 +3887,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(); | 
|  |