| Index: Source/core/html/HTMLTrackElement.cpp
|
| diff --git a/Source/core/html/HTMLTrackElement.cpp b/Source/core/html/HTMLTrackElement.cpp
|
| index 1ca347984bf9d2ce48ddb2d3b89372d9019e7fe3..d8836c1fdfb8a9df08033f71b1b9f32d4372ca6c 100644
|
| --- a/Source/core/html/HTMLTrackElement.cpp
|
| +++ b/Source/core/html/HTMLTrackElement.cpp
|
| @@ -79,14 +79,14 @@ Node::InsertionNotificationRequest HTMLTrackElement::insertedInto(ContainerNode*
|
| HTMLElement::insertedInto(insertionPoint);
|
| HTMLMediaElement* parent = mediaElement();
|
| if (insertionPoint == parent)
|
| - parent->didAddTrack(this);
|
| + parent->didAddTrackElement(this);
|
| return InsertionDone;
|
| }
|
|
|
| void HTMLTrackElement::removedFrom(ContainerNode* insertionPoint)
|
| {
|
| if (!parentNode() && isHTMLMediaElement(*insertionPoint))
|
| - toHTMLMediaElement(insertionPoint)->didRemoveTrack(this);
|
| + toHTMLMediaElement(insertionPoint)->didRemoveTrackElement(this);
|
| HTMLElement::removedFrom(insertionPoint);
|
| }
|
|
|
| @@ -313,4 +313,3 @@ HTMLMediaElement* HTMLTrackElement::mediaElement() const
|
| }
|
|
|
| }
|
| -
|
|
|