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

Unified Diff: chrome/common/extensions/api/mediaPlayerPrivate.json

Issue 10272021: Files generated by the JSON schema compiler are named incorrectly (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/mediaPlayerPrivate.json
diff --git a/chrome/common/extensions/api/mediaPlayerPrivate.json b/chrome/common/extensions/api/mediaPlayerPrivate.json
deleted file mode 100644
index fef30a00ce9898c21b94933c4a18ead2304ab8e9..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/mediaPlayerPrivate.json
+++ /dev/null
@@ -1,91 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[
- {
- "namespace": "mediaPlayerPrivate",
- "nodoc": "true",
- "types": [
- {
- "id": "Playlist",
- "type": "object",
- "description": "Mediaplayer playlist stored in the browser (it extsts even if the mediaplayer is closed).",
- "properties": {
- "items": {
- "name": "items",
- "type": "array",
- "description": "Array of URLs for media files (in 'filesystem:' scheme for local files)",
- "items": { "type": "string" }
- },
- "position": {
- "type": "integer",
- "description": "A position in the playlist."
- }
- }
- }
- ],
- "functions": [
- {
- "name": "play",
- "description": "Plays a new playlist from a given position.",
- "parameters": [
- {
- "name": "items",
- "type": "array",
- "description": "Array of URLs for media files (in 'filesystem:' scheme for local files)",
- "items": { "type": "string" }
- },
- {
- "name": "position",
- "type": "integer",
- "description": "A position in the playlist."
- }
- ]
- },
- {
- "name": "getPlaylist",
- "type": "function",
- "description": "Returns current playlist and position.",
- "parameters": [
- {
- "name": "callback",
- "type": "function",
- "description": "Callback to retrieve the playlist.",
- "parameters": [
- {
- "name": "playlist",
- "$ref": "Playlist",
- "description": "Mediaplayer playlist stored in the browser (it extsts even if the mediaplayer is closed)."
- }
- ]
- }
- ]
- },
- {
- "name": "setWindowHeight",
- "description": "Changes the height of the media player window.",
- "parameters": [
- {
- "name": "height",
- "type": "integer",
- "description": "Height of the media player window (not including window title or borders)."
- }
- ]
- },
- {
- "name": "closeWindow",
- "description": "Closes the media player window.",
- "parameters": []
- }
- ],
- "events": [
- {
- "name": "onPlaylistChanged",
- "type": "function",
- "description": "Notifies that playlist content or state has been changed. Data could be retrieved via 'getPlaylist'.",
- "parameters": []
- }
- ]
- }
-]
« no previous file with comments | « chrome/common/extensions/api/managed_mode_private.json ('k') | chrome/common/extensions/api/media_player_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698