OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 [ | 5 [ |
6 { | 6 { |
7 "namespace": "mediaPlayerPrivate", | 7 "namespace": "mediaPlayerPrivate", |
8 "nodoc": "true", | 8 "nodoc": "true", |
| 9 "compiler_options": { |
| 10 "implemented_in": "chrome/browser/chromeos/extensions/media_player_api.h" |
| 11 }, |
| 12 "platforms": ["chromeos"], |
9 "types": [ | 13 "types": [ |
10 { | 14 { |
11 "id": "Playlist", | 15 "id": "Playlist", |
12 "type": "object", | 16 "type": "object", |
13 "description": "Mediaplayer playlist stored in the browser (it exists ev
en if the mediaplayer is closed).", | 17 "description": "Mediaplayer playlist stored in the browser (it exists ev
en if the mediaplayer is closed).", |
14 "properties": { | 18 "properties": { |
15 "items": { | 19 "items": { |
16 "name": "items", | 20 "name": "items", |
17 "type": "array", | 21 "type": "array", |
18 "description": "Array of URLs for media files (in 'filesystem:' sche
me for local files)", | 22 "description": "Array of URLs for media files (in 'filesystem:' sche
me for local files)", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 }, | 104 }, |
101 { | 105 { |
102 "name": "onTogglePlayState", | 106 "name": "onTogglePlayState", |
103 "type": "function", | 107 "type": "function", |
104 "description": "Notifies that a play/pause toggle was requested.", | 108 "description": "Notifies that a play/pause toggle was requested.", |
105 "parameters": [] | 109 "parameters": [] |
106 } | 110 } |
107 ] | 111 ] |
108 } | 112 } |
109 ] | 113 ] |
OLD | NEW |