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

Unified Diff: chrome/common/extensions/api/experimental.app.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/experimental.app.json
diff --git a/chrome/common/extensions/api/experimental.app.json b/chrome/common/extensions/api/experimental.app.json
deleted file mode 100644
index a169fe5e699fba0189b0329fe44cf3445a7d2a6f..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental.app.json
+++ /dev/null
@@ -1,90 +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":"experimental.app",
- "functions": [
- {
- "name": "notify",
- "type": "function",
- "description": "Creates a notification from this app.",
- "parameters": [
- {
- "type": "object",
- "name": "details",
- "properties": {
- "extensionId": {
- "type": "string",
- "optional": true,
- "description": "An optional id to do notifications for an app other than the calling app. This is just to allow prototyping with an extension that sends notifications on behalf of apps that don't support notifications yet; this will be removed before the API becomes stable."
- },
- "title": {
- "type": "string",
- "optional": true,
- "description": "The title of the notification."
- },
- "bodyText": {
- "type": "string",
- "optional": true,
- "description": "The text content of the notification."
- },
- "linkUrl": {
- "type": "string",
- "optional": true,
- "description": "The URL for an optional link to show along with the notification. If you specify a linkUrl, you must also specify a value for linkText."
- },
- "linkText": {
- "type": "string",
- "optional": true,
- "description": "If a linkUrl is provided, this is required and will be used as the linkified text. It should be relatively short."
- }
- }
- },
- {
- "type": "function",
- "name": "callback",
- "optional": true,
- "parameters": [],
- "description": "A callback when the function is complete. Any errors will be reported in <a href='extension.html#property-lastError'>chrome.extension.lastError</a>."
- }
- ]
- },
- {
- "name": "clearAllNotifications",
- "type": "function",
- "description": "Clears all previously sent notifications.",
- "parameters": [
- {
- "type": "object",
- "name": "details",
- "optional": true,
- "properties": {
- "extensionId": {
- "type": "string",
- "optional": true,
- "description": "An optional id to do notifications for an app other than the calling app. This is just to allow prototyping with an extension that sends notifications on behalf of apps that don't support notifications yet; this will be removed before the API becomes stable."
- }
- }
- },
- {
- "type": "function",
- "name": "callback",
- "optional": true,
- "description": "A callback when the function is complete. Any errors will be reported in <a href='extension.html#property-lastError'>chrome.extension.lastError</a>.",
- "parameters": []
- }
- ]
- }
- ],
- "events": [
- {
- "nodoc": true,
- "name": "onLaunched",
- "type": "function",
- "description": "Fired when the app is launched."
- }
- ]
- }
-]
« no previous file with comments | « chrome/common/extensions/api/experimental.accessibility.json ('k') | chrome/common/extensions/api/experimental.bluetooth.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698