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

Unified Diff: Source/core/html/track/vtt/VTTCue.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/vtt/VTTCue.cpp
diff --git a/Source/core/html/track/vtt/VTTCue.cpp b/Source/core/html/track/vtt/VTTCue.cpp
index 15412ea2158dd1488c59fc33abfd47ec8a6bd8ec..2be7b1156494b42ed321e4215bf07308d0b15284 100644
--- a/Source/core/html/track/vtt/VTTCue.cpp
+++ b/Source/core/html/track/vtt/VTTCue.cpp
@@ -226,7 +226,7 @@ VTTCue::~VTTCue()
#ifndef NDEBUG
String VTTCue::toString() const
{
- return String::format("%p id=%s interval=%f-->%f cue=%s)", this, id().utf8().data(), startTime(), endTime(), text().utf8().data());
+ return String::format("%p id=%s interval=%f-->%f cue=%s)", this, id().string().utf8().data(), startTime(), endTime(), text().utf8().data());
}
#endif

Powered by Google App Engine
This is Rietveld 408576698