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

Unified Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.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/core/frame/LocalDOMWindow.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
index 7baa82d8bece722b5dba7fea5de4723473a496e9..d0d709e377e61b701b3cfc2612969ebb70c8cc50 100644
--- a/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp
@@ -1090,7 +1090,7 @@ void LocalDOMWindow::setName(const AtomicString& name) {
frame()->tree().setName(name);
ASSERT(frame()->loader().client());
- frame()->loader().client()->didChangeName(name, frame()->tree().uniqueName());
+ frame()->loader().client()->didChangeName(name);
}
void LocalDOMWindow::setStatus(const String& string) {

Powered by Google App Engine
This is Rietveld 408576698