| Index: Source/core/html/track/TextTrack.cpp
|
| diff --git a/Source/core/html/track/TextTrack.cpp b/Source/core/html/track/TextTrack.cpp
|
| index 02b8753b989159eb181f2f17c1ae048f68b0d327..85c90290d0a837b563cc128742b3846600521393 100644
|
| --- a/Source/core/html/track/TextTrack.cpp
|
| +++ b/Source/core/html/track/TextTrack.cpp
|
| @@ -97,8 +97,8 @@ const AtomicString& TextTrack::showingKeyword()
|
|
|
| TextTrack::TextTrack(Document& document, TextTrackClient* client, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType type)
|
| : TrackBase(TrackBase::TextTrack, label, language, id)
|
| - , m_cues(0)
|
| - , m_regions(0)
|
| + , m_cues(nullptr)
|
| + , m_regions(nullptr)
|
| , m_document(&document)
|
| , m_trackList(0)
|
| , m_mode(disabledKeyword())
|
| @@ -202,7 +202,7 @@ void TextTrack::removeAllCues()
|
| for (size_t i = 0; i < m_cues->length(); ++i)
|
| m_cues->item(i)->setTrack(0);
|
|
|
| - m_cues = 0;
|
| + m_cues = nullptr;
|
| }
|
|
|
| TextTrackCueList* TextTrack::activeCues() const
|
|
|