Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Unified Diff: third_party/WebKit/Source/web/tests/WebViewTest.cpp

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: . Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698