15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2011 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
26323480423219ecd77329f8326dc5e0e3b50926d4Torne (Richard Coles)// http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#mediacontroller
27323480423219ecd77329f8326dc5e0e3b50926d4Torne (Richard Coles)
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)[
295c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    Constructor,
30a854de003a23bf3c7f95ec0f8154ada64092ff5cTorne (Richard Coles)    ConstructorCallWith=ExecutionContext,
31f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu    RuntimeEnabled=MediaController,
32323480423219ecd77329f8326dc5e0e3b50926d4Torne (Richard Coles)    TypeChecking=Unrestricted,
33e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch] interface MediaController : EventTarget {
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute TimeRanges buffered;
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute TimeRanges seekable;
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
37f91f5fa1608c2cdd9af1842fb5dadbe78275be2aBo Liu    readonly attribute unrestricted double duration;
387242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    attribute double currentTime;
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute boolean paused;
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute TimeRanges played;
42926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    readonly attribute DOMString playbackState;
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void play();
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void pause();
45926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    void unpause();
465c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
47323480423219ecd77329f8326dc5e0e3b50926d4Torne (Richard Coles)    attribute double defaultPlaybackRate;
48323480423219ecd77329f8326dc5e0e3b50926d4Torne (Richard Coles)    attribute double playbackRate;
495c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
5051b2906e11752df6c18351cf520e30522d3b53a1Torne (Richard Coles)    [RaisesException=Setter] attribute double volume;
515c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    attribute boolean muted;
525c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
53