Chromium Code Reviews| 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 USVString src; |
|
Zhiqiang Zhang (Slow)
2017/01/05 16:03:07
+required?
mlamouri (slow - plz ping)
2017/01/05 19:28:22
Done.
| |
| 9 Constructor(MediaImageInit image), | 9 DOMString sizes; |
|
Zhiqiang Zhang (Slow)
2017/01/05 16:03:07
= "" ?
mlamouri (slow - plz ping)
2017/01/05 19:28:22
Done.
| |
| 10 RuntimeEnabled=MediaSession, | 10 DOMString type; |
|
Zhiqiang Zhang (Slow)
2017/01/05 16:03:07
= "" ?
mlamouri (slow - plz ping)
2017/01/05 19:28:22
Done.
| |
| 11 ] interface MediaImage { | |
| 12 readonly attribute USVString src; | |
| 13 readonly attribute DOMString sizes; | |
| 14 readonly attribute DOMString type; | |
| 15 }; | 11 }; |
| OLD | NEW |