| OLD | NEW |
| 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 "dependencies": [ "tabs" ], | |
| 9 "types": [ | 8 "types": [ |
| 10 { | 9 { |
| 11 "id": "ImageDataType", | 10 "id": "ImageDataType", |
| 12 "type": "object", | 11 "type": "object", |
| 13 "isInstanceOf": "ImageData", | 12 "isInstanceOf": "ImageData", |
| 14 "additionalProperties": { "type": "any" }, | 13 "additionalProperties": { "type": "any" }, |
| 15 "description": "Pixel data for an image. Must be an ImageData object (fo
r example, from a <code>canvas</code> element)." | 14 "description": "Pixel data for an image. Must be an ImageData object (fo
r example, from a <code>canvas</code> element)." |
| 16 } | 15 } |
| 17 ], | 16 ], |
| 18 "functions": [ | 17 "functions": [ |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "parameters": [ | 181 "parameters": [ |
| 183 { | 182 { |
| 184 "name": "tab", | 183 "name": "tab", |
| 185 "$ref": "tabs.Tab" | 184 "$ref": "tabs.Tab" |
| 186 } | 185 } |
| 187 ] | 186 ] |
| 188 } | 187 } |
| 189 ] | 188 ] |
| 190 } | 189 } |
| 191 ] | 190 ] |
| OLD | NEW |