| Index: Source/core/html/track/InbandTextTrack.cpp
|
| diff --git a/Source/core/html/track/InbandTextTrack.cpp b/Source/core/html/track/InbandTextTrack.cpp
|
| index 29ac326b328e593f41c02c890d5386856008bcbf..1d5cbe37213f0f0a9376ec1d22de0e71bab7f858 100644
|
| --- a/Source/core/html/track/InbandTextTrack.cpp
|
| +++ b/Source/core/html/track/InbandTextTrack.cpp
|
| @@ -38,13 +38,13 @@ using blink::WebString;
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtr<InbandTextTrack> InbandTextTrack::create(Document& document, TextTrackClient* client, WebInbandTextTrack* webTrack)
|
| +PassRefPtr<InbandTextTrack> InbandTextTrack::create(Document& document, WebInbandTextTrack* webTrack)
|
| {
|
| - return adoptRef(new InbandTextTrack(document, client, webTrack));
|
| + return adoptRef(new InbandTextTrack(document, webTrack));
|
| }
|
|
|
| -InbandTextTrack::InbandTextTrack(Document& document, TextTrackClient* client, WebInbandTextTrack* webTrack)
|
| - : TextTrack(document, client, emptyAtom, webTrack->label(), webTrack->language(), webTrack->id(), InBand)
|
| +InbandTextTrack::InbandTextTrack(Document& document, WebInbandTextTrack* webTrack)
|
| + : TextTrack(document, emptyAtom, webTrack->label(), webTrack->language(), webTrack->id(), InBand)
|
| , m_webTrack(webTrack)
|
| {
|
| m_webTrack->setClient(this);
|
| @@ -93,7 +93,6 @@ void InbandTextTrack::setTrackList(TextTrackList* trackList)
|
| ASSERT(m_webTrack);
|
| m_webTrack->setClient(0);
|
| m_webTrack = 0;
|
| - clearClient();
|
| }
|
|
|
| void InbandTextTrack::addWebVTTCue(double start, double end, const WebString& id, const WebString& content, const WebString& settings)
|
|
|