OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // https://wicg.github.io/mediasession/#the-mediaimage-interface | 5 // https://wicg.github.io/mediasession/#dictdef-mediaimage |
6 | 6 |
7 [ | 7 dictionary MediaImage { |
8 ConstructorCallWith=ExecutionContext, | 8 required USVString src; |
9 Constructor(MediaImageInit image), | 9 DOMString sizes = ""; |
10 RuntimeEnabled=MediaSession, | 10 DOMString type = ""; |
11 ] interface MediaImage { | |
12 readonly attribute USVString src; | |
13 readonly attribute DOMString sizes; | |
14 readonly attribute DOMString type; | |
15 }; | 11 }; |
OLD | NEW |