| Index: chrome/common/extensions/api/extension_api.json
|
| diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
|
| index a128c88ad01b1b4c3f4ceb23bc5d5f5be5f6b3cc..ea5b7deed55d2dfb9d08fc9ce169f581a8eb5394 100755
|
| --- a/chrome/common/extensions/api/extension_api.json
|
| +++ b/chrome/common/extensions/api/extension_api.json
|
| @@ -65,7 +65,6 @@
|
| * TODO(rafaelw): Validate event arguments in debug and unittests
|
| * TODO(rafaelw): Support $ref for json_schema validation.
|
| */
|
| -
|
| [
|
| /**
|
| * chrome.self
|
| @@ -706,5 +705,36 @@
|
| ]
|
| }
|
| ]
|
| + },
|
| +
|
| + /**
|
| + * chrome.toolstrip
|
| + */
|
| + {
|
| + namespace: "toolstrip",
|
| + types: [],
|
| + functions: [
|
| + {
|
| + name: "expand",
|
| + type: "function",
|
| + description: "",
|
| + parameters: [
|
| + {type: "integer", name: "height", minimum: 0},
|
| + {type: "string", name: "url", optional: true},
|
| + {type: "function", name: "callback", optional: true}
|
| + ]
|
| + },
|
| + {
|
| + name: "collapse",
|
| + type: "function",
|
| + description: "",
|
| + parameters: [
|
| + {type: "string", name: "url", optional: true},
|
| + {type: "function", name: "callback", optional: true}
|
| + ]
|
| + }
|
| + ],
|
| + events: [
|
| + ]
|
| }
|
| ]
|
|
|