| Index: Source/core/html/track/InbandTextTrack.cpp
|
| diff --git a/Source/core/html/track/InbandTextTrack.cpp b/Source/core/html/track/InbandTextTrack.cpp
|
| index 1d5cbe37213f0f0a9376ec1d22de0e71bab7f858..c129c309dc1452664c817b88a0e639d383c60de7 100644
|
| --- a/Source/core/html/track/InbandTextTrack.cpp
|
| +++ b/Source/core/html/track/InbandTextTrack.cpp
|
| @@ -97,7 +97,7 @@ void InbandTextTrack::setTrackList(TextTrackList* trackList)
|
|
|
| void InbandTextTrack::addWebVTTCue(double start, double end, const WebString& id, const WebString& content, const WebString& settings)
|
| {
|
| - RefPtr<VTTCue> cue = VTTCue::create(document(), start, end, content);
|
| + RefPtrWillBeRawPtr<VTTCue> cue = VTTCue::create(document(), start, end, content);
|
| cue->setId(id);
|
| cue->parseSettings(settings);
|
| addCue(cue);
|
|
|