Index: Source/core/html/track/AudioTrackList.cpp |
diff --git a/Source/core/html/track/AudioTrackList.cpp b/Source/core/html/track/AudioTrackList.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..209be67ff4541683b146d6b091ba17722a897537 |
--- /dev/null |
+++ b/Source/core/html/track/AudioTrackList.cpp |
@@ -0,0 +1,40 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "config.h" |
+#include "core/html/track/AudioTrackList.h" |
+ |
+namespace WebCore { |
+ |
+PassRefPtr<AudioTrackList> AudioTrackList::create(HTMLMediaElement& mediaElement) |
+{ |
+ return adoptRef(new AudioTrackList(mediaElement)); |
+} |
+ |
+AudioTrackList::~AudioTrackList() |
+{ |
+} |
+ |
+AudioTrackList::AudioTrackList(HTMLMediaElement& mediaElement) |
+ : TrackListBase<AudioTrack>(&mediaElement) |
+{ |
+ ScriptWrappable::init(this); |
+} |
+ |
+bool AudioTrackList::hasEnabledTrack() const |
+{ |
+ for (unsigned i = 0; i < length(); ++i) { |
+ if (anonymousIndexedGetter(i)->enabled()) |
+ return true; |
+ } |
+ |
+ return false; |
+} |
+ |
+const AtomicString& AudioTrackList::interfaceName() const |
+{ |
+ return EventTargetNames::AudioTrackList; |
+} |
+ |
+} |