| Index: Source/core/html/track/LoadableTextTrack.cpp
|
| diff --git a/Source/core/html/track/LoadableTextTrack.cpp b/Source/core/html/track/LoadableTextTrack.cpp
|
| index 19034c9811fbe61597c87a9333c292c4d7667e7f..f8c7c752583cb9ac37498a5d438d6e2088d27bfd 100644
|
| --- a/Source/core/html/track/LoadableTextTrack.cpp
|
| +++ b/Source/core/html/track/LoadableTextTrack.cpp
|
| @@ -28,7 +28,7 @@
|
|
|
| #include "core/html/HTMLTrackElement.h"
|
| #include "core/html/track/TextTrackCueList.h"
|
| -#include "core/html/track/TextTrackRegionList.h"
|
| +#include "core/html/track/VTTRegionList.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -126,7 +126,7 @@ void LoadableTextTrack::newRegionsAvailable(TextTrackLoader* loader)
|
| {
|
| ASSERT_UNUSED(loader, m_loader == loader);
|
|
|
| - Vector<RefPtr<TextTrackRegion> > newRegions;
|
| + Vector<RefPtr<VTTRegion> > newRegions;
|
| m_loader->getNewRegions(newRegions);
|
|
|
| for (size_t i = 0; i < newRegions.size(); ++i) {
|
|
|