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

Unified Diff: third_party/WebKit/Source/web/WebFrame.cpp

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: Rebase again. Created 3 years, 9 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/WebFrame.cpp
diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
index 2d42aa2d10cc6159a74dbd75d90236a4f47ace4e..96c4787f68761896b6047a5fb31ef8cd3cb5bd57 100644
--- a/third_party/WebKit/Source/web/WebFrame.cpp
+++ b/third_party/WebKit/Source/web/WebFrame.cpp
@@ -70,7 +70,6 @@ bool WebFrame::swap(WebFrame* frame) {
FrameHost* host = oldFrame->host();
AtomicString name = oldFrame->tree().name();
- AtomicString uniqueName = oldFrame->tree().uniqueName();
FrameOwner* owner = oldFrame->owner();
v8::HandleScope handleScope(v8::Isolate::GetCurrent());
@@ -106,8 +105,7 @@ bool WebFrame::swap(WebFrame* frame) {
TRACE_EVENT_SCOPE_THREAD, "frame", &localFrame);
}
} else {
- toWebRemoteFrameImpl(frame)->initializeCoreFrame(host, owner, name,
- uniqueName);
+ toWebRemoteFrameImpl(frame)->initializeCoreFrame(host, owner, name);
}
if (m_parent && oldFrame->hasReceivedUserGesture())
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrameImplBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698