Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1306)

Unified Diff: Source/core/html/track/VideoTrackList.cpp

Issue 284513003: Implement AudioTrack, AudioTrackList, VideoTrack, and VideoTrackList (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: nits Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/track/VideoTrackList.h ('k') | Source/core/html/track/VideoTrackList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/VideoTrackList.cpp
diff --git a/Source/core/html/track/VideoTrackList.cpp b/Source/core/html/track/VideoTrackList.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..e107717dfa409a70aedc611886a01be8f6709cbc
--- /dev/null
+++ b/Source/core/html/track/VideoTrackList.cpp
@@ -0,0 +1,60 @@
+// 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/VideoTrackList.h"
+
+#include "core/html/HTMLMediaElement.h"
+#include "core/html/track/VideoTrack.h"
+
+namespace WebCore {
+
+PassRefPtrWillBeRawPtr<VideoTrackList> VideoTrackList::create(HTMLMediaElement& mediaElement)
+{
+ return adoptRefWillBeRefCountedGarbageCollected(new VideoTrackList(mediaElement));
+}
+
+VideoTrackList::~VideoTrackList()
+{
+}
+
+VideoTrackList::VideoTrackList(HTMLMediaElement& mediaElement)
+ : TrackListBase<VideoTrack>(&mediaElement)
+{
+ ScriptWrappable::init(this);
+}
+
+const AtomicString& VideoTrackList::interfaceName() const
+{
+ return EventTargetNames::VideoTrackList;
+}
+
+int VideoTrackList::selectedIndex() const
+{
+ for (unsigned i = 0; i < length(); ++i) {
+ VideoTrack* track = anonymousIndexedGetter(i);
+
+ if (track->selected())
+ return i;
+ }
+
+ return -1;
+}
+
+void VideoTrackList::trackSelected(blink::WebMediaPlayer::TrackId selectedTrackId)
+{
+ // Clear the selected flag on the previously selected track, if any.
+ for (unsigned i = 0; i < length(); ++i) {
+ VideoTrack* track = anonymousIndexedGetter(i);
+
+ if (track->trackId() != selectedTrackId)
+ track->clearSelected();
+ else
+ ASSERT(track->selected());
+ }
+
+ scheduleChangeEvent();
+}
+
+}
« no previous file with comments | « Source/core/html/track/VideoTrackList.h ('k') | Source/core/html/track/VideoTrackList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698