• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5[
6    RuntimeEnabled=AudioVideoTracks,
7    SetWrapperReferenceFrom=owner,
8    WillBeGarbageCollected,
9] interface VideoTrack {
10  readonly attribute DOMString id;
11  readonly attribute DOMString kind;
12  readonly attribute DOMString label;
13  readonly attribute DOMString language;
14  attribute boolean selected;
15};
16