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

Unified Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.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/LocalFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
index 73c1b65eae7e909e3c67d43e77b7aad96d22c5d4..14ef93978f2efbfad662a45f1820b4ba919da6a6 100644
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
@@ -858,11 +858,10 @@ void LocalFrameClientImpl::frameFocused() const {
m_webFrame->client()->frameFocused();
}
-void LocalFrameClientImpl::didChangeName(const String& name,
- const String& uniqueName) {
+void LocalFrameClientImpl::didChangeName(const String& name) {
if (!m_webFrame->client())
return;
- m_webFrame->client()->didChangeName(name, uniqueName);
+ m_webFrame->client()->didChangeName(name);
}
void LocalFrameClientImpl::didEnforceInsecureRequestPolicy(

Powered by Google App Engine
This is Rietveld 408576698