| Index: trunk/Source/core/html/HTMLTrackElement.cpp
|
| ===================================================================
|
| --- trunk/Source/core/html/HTMLTrackElement.cpp (revision 167840)
|
| +++ trunk/Source/core/html/HTMLTrackElement.cpp (working copy)
|
| @@ -79,14 +79,14 @@
|
| HTMLElement::insertedInto(insertionPoint);
|
| HTMLMediaElement* parent = mediaElement();
|
| if (insertionPoint == parent)
|
| - parent->didAddTrackElement(this);
|
| + parent->didAddTrack(this);
|
| return InsertionDone;
|
| }
|
|
|
| void HTMLTrackElement::removedFrom(ContainerNode* insertionPoint)
|
| {
|
| if (!parentNode() && isHTMLMediaElement(*insertionPoint))
|
| - toHTMLMediaElement(insertionPoint)->didRemoveTrackElement(this);
|
| + toHTMLMediaElement(insertionPoint)->didRemoveTrack(this);
|
| HTMLElement::removedFrom(insertionPoint);
|
| }
|
|
|
| @@ -313,3 +313,4 @@
|
| }
|
|
|
| }
|
| +
|
|
|