| Index: third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebViewTest.cpp b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| index 4bcb8c64a50114a68bafbd7d272210df4ff084e8..3976e86bc4a50eda6520819427e806a9e0686aed 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebViewTest.cpp
|
| @@ -3186,7 +3186,7 @@ class CreateChildCounterFrameClient
|
| WebLocalFrame* createChildFrame(WebLocalFrame* parent,
|
| WebTreeScopeType,
|
| const WebString& name,
|
| - const WebString& uniqueName,
|
| + const WebString& fallbackName,
|
| WebSandboxFlags,
|
| const WebFrameOwnerProperties&) override;
|
|
|
| @@ -3200,12 +3200,12 @@ WebLocalFrame* CreateChildCounterFrameClient::createChildFrame(
|
| WebLocalFrame* parent,
|
| WebTreeScopeType scope,
|
| const WebString& name,
|
| - const WebString& uniqueName,
|
| + const WebString& fallbackName,
|
| WebSandboxFlags sandboxFlags,
|
| const WebFrameOwnerProperties& frameOwnerProperties) {
|
| ++m_count;
|
| return TestWebFrameClient::createChildFrame(
|
| - parent, scope, name, uniqueName, sandboxFlags, frameOwnerProperties);
|
| + parent, scope, name, fallbackName, sandboxFlags, frameOwnerProperties);
|
| }
|
|
|
| TEST_P(WebViewTest, ChangeDisplayMode) {
|
|
|