Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: chrome/common/extensions/api/media_player_private.json

Issue 12089062: Move API functions registrations out of ExtensionFunctionRegistry. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698