| 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", | |
| 9 "compiler_options": { | 8 "compiler_options": { |
| 10 "implemented_in": "chrome/browser/chromeos/extensions/media_player_api.h" | 9 "implemented_in": "chrome/browser/chromeos/extensions/media_player_api.h" |
| 11 }, | 10 }, |
| 11 "description": "none", |
| 12 "platforms": ["chromeos"], | 12 "platforms": ["chromeos"], |
| 13 "types": [ | 13 "types": [ |
| 14 { | 14 { |
| 15 "id": "Playlist", | 15 "id": "Playlist", |
| 16 "type": "object", | 16 "type": "object", |
| 17 "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).", |
| 18 "properties": { | 18 "properties": { |
| 19 "items": { | 19 "items": { |
| 20 "name": "items", | 20 "name": "items", |
| 21 "type": "array", | 21 "type": "array", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 }, | 104 }, |
| 105 { | 105 { |
| 106 "name": "onTogglePlayState", | 106 "name": "onTogglePlayState", |
| 107 "type": "function", | 107 "type": "function", |
| 108 "description": "Notifies that a play/pause toggle was requested.", | 108 "description": "Notifies that a play/pause toggle was requested.", |
| 109 "parameters": [] | 109 "parameters": [] |
| 110 } | 110 } |
| 111 ] | 111 ] |
| 112 } | 112 } |
| 113 ] | 113 ] |
| OLD | NEW |