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

Unified Diff: Source/web/WebFrameImpl.cpp

Issue 122993002: Make calls to AtomicString(const String&) explicit in web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 12 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: Source/web/WebFrameImpl.cpp
diff --git a/Source/web/WebFrameImpl.cpp b/Source/web/WebFrameImpl.cpp
index a1e3885e53d6abae1546e2c726619178435497f7..3ed6ee14798e68e4fef553b3e4a43fd714b1bcda 100644
--- a/Source/web/WebFrameImpl.cpp
+++ b/Source/web/WebFrameImpl.cpp
@@ -2153,7 +2153,7 @@ PassRefPtr<Frame> WebFrameImpl::createChildFrame(const FrameLoadRequest& request
RefPtr<Frame> childFrame = Frame::create(webframe->m_frameInit);
webframe->setWebCoreFrame(childFrame);
- childFrame->tree().setName(request.frameName());
+ childFrame->tree().setName(AtomicString(request.frameName()));
frame()->tree().appendChild(childFrame);

Powered by Google App Engine
This is Rietveld 408576698