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

Unified Diff: Source/core/html/track/TextTrackCue.cpp

Issue 108313015: Make calls to AtomicString(const String&) explicit in html/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take feedback into consideration 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/core/html/track/TextTrackCue.cpp
diff --git a/Source/core/html/track/TextTrackCue.cpp b/Source/core/html/track/TextTrackCue.cpp
index cfb2effe24b7cd190c465bce786325e6030b860f..a89b46299beec8a669fe564ad6cb41860f6ddf18 100644
--- a/Source/core/html/track/TextTrackCue.cpp
+++ b/Source/core/html/track/TextTrackCue.cpp
@@ -83,7 +83,7 @@ void TextTrackCue::setTrack(TextTrack* track)
m_track = track;
}
-void TextTrackCue::setId(const String& id)
+void TextTrackCue::setId(const AtomicString& id)
{
if (m_id == id)
return;

Powered by Google App Engine
This is Rietveld 408576698