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

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

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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
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": "pageAction", 7 "namespace": "pageAction",
8 "description": "Use page actions to put icons inside the address bar. Page a ctions represent actions that can be taken on the current page, but that aren't applicable to all pages.",
8 "dependencies": [ "tabs" ], 9 "dependencies": [ "tabs" ],
9 "types": [ 10 "types": [
10 { 11 {
11 "id": "ImageDataType", 12 "id": "ImageDataType",
12 "type": "object", 13 "type": "object",
13 "isInstanceOf": "ImageData", 14 "isInstanceOf": "ImageData",
14 "additionalProperties": { "type": "any" }, 15 "additionalProperties": { "type": "any" },
15 "description": "Pixel data for an image. Must be an ImageData object (fo r example, from a <code>canvas</code> element)." 16 "description": "Pixel data for an image. Must be an ImageData object (fo r example, from a <code>canvas</code> element)."
16 } 17 }
17 ], 18 ],
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "parameters": [ 183 "parameters": [
183 { 184 {
184 "name": "tab", 185 "name": "tab",
185 "$ref": "tabs.Tab" 186 "$ref": "tabs.Tab"
186 } 187 }
187 ] 188 ]
188 } 189 }
189 ] 190 ]
190 } 191 }
191 ] 192 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698