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": "bookmarkManagerPrivate", | 7 "namespace": "bookmarkManagerPrivate", |
8 "nodoc": true, | 8 "nodoc": true, |
9 "dependencies": [ "bookmarks" ], | |
10 "types": [ | 9 "types": [ |
11 { | 10 { |
12 "id": "BookmarkNodeDataElement", | 11 "id": "BookmarkNodeDataElement", |
13 "nodoc": true, | 12 "nodoc": true, |
14 "type": "object", | 13 "type": "object", |
15 "properties": { | 14 "properties": { |
16 "id": { | 15 "id": { |
17 "type": "string", | 16 "type": "string", |
18 "optional": true, | 17 "optional": true, |
19 "description": "The ID of the bookmark. This is only provided if the
data is from the same profile." | 18 "description": "The ID of the bookmark. This is only provided if the
data is from the same profile." |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 "name": "onDrop", | 249 "name": "onDrop", |
251 "type": "function", | 250 "type": "function", |
252 "description": "Fired when the user drops bookmarks on the document", | 251 "description": "Fired when the user drops bookmarks on the document", |
253 "parameters": [ | 252 "parameters": [ |
254 {"name": "bookmarkNodeData", "$ref": "BookmarkNodeData"} | 253 {"name": "bookmarkNodeData", "$ref": "BookmarkNodeData"} |
255 ] | 254 ] |
256 } | 255 } |
257 ] | 256 ] |
258 } | 257 } |
259 ] | 258 ] |
OLD | NEW |