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

Unified Diff: chrome/common/extensions/api/experimental.infobars.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.infobars.json
diff --git a/chrome/common/extensions/api/experimental.infobars.json b/chrome/common/extensions/api/experimental.infobars.json
deleted file mode 100644
index c8e161efc7b05f750f1b1a6a50b4c4945ac6aa44..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental.infobars.json
+++ /dev/null
@@ -1,51 +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.infobars",
- "dependencies": [ "windows" ],
- "types": [],
- "functions": [
- {
- "name": "show",
- "type": "function",
- "description": "Shows an infobar in the specified tab. The infobar will be closed automatically when the tab navigates. Use window.close() to close the infobar before then.",
- "parameters": [
- {
- "name": "details",
- "type": "object",
- "properties": {
- "tabId": {
- "type": "integer",
- "description": "The tab id for the tab to display the infobar in."
- },
- "path": {
- "type": "string",
- "description": "The html file that contains the infobar."
- },
- "height": {
- "type": "integer",
- "description": "The height (in pixels) of the infobar to show. If omitted, the default infobar height will be used.",
- "optional": true,
- "minimum": 0,
- "maximum": 72
- }
- }
- },
- {
- "type": "function",
- "name": "callback",
- "optional": true,
- "parameters": [
- {
- "name": "window", "$ref": "windows.Window", "description": "Contains details about the window in which the infobar was created."
- }
- ]
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « chrome/common/extensions/api/experimental.idltest.idl ('k') | chrome/common/extensions/api/experimental.input.ui.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698