| Index: Source/core/loader/TextTrackLoader.cpp
|
| diff --git a/Source/core/loader/TextTrackLoader.cpp b/Source/core/loader/TextTrackLoader.cpp
|
| index ac11bbf5f025442b3ab4da452b81cdd705a9cfed..b401472dccf187a3aec17ab0759d57bb29dc1a08 100644
|
| --- a/Source/core/loader/TextTrackLoader.cpp
|
| +++ b/Source/core/loader/TextTrackLoader.cpp
|
| @@ -185,12 +185,10 @@ void TextTrackLoader::newCuesParsed()
|
| m_cueLoadTimer.startOneShot(0);
|
| }
|
|
|
| -#if ENABLE(WEBVTT_REGIONS)
|
| void TextTrackLoader::newRegionsParsed()
|
| {
|
| m_client->newRegionsAvailable(this);
|
| }
|
| -#endif
|
|
|
| void TextTrackLoader::fileFailedToParse()
|
| {
|
| @@ -211,13 +209,11 @@ void TextTrackLoader::getNewCues(Vector<RefPtr<TextTrackCue> >& outputCues)
|
| m_cueParser->getNewCues(outputCues);
|
| }
|
|
|
| -#if ENABLE(WEBVTT_REGIONS)
|
| void TextTrackLoader::getNewRegions(Vector<RefPtr<TextTrackRegion> >& outputRegions)
|
| {
|
| ASSERT(m_cueParser);
|
| if (m_cueParser)
|
| m_cueParser->getNewRegions(outputRegions);
|
| }
|
| -#endif
|
| }
|
|
|
|
|