| 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": "experimental.bookmarkManager", | 7 "namespace": "bookmarkManagerPrivate", |
| 8 "nodoc": true, | 8 "nodoc": true, |
| 9 "dependencies": [ "bookmarks" ], | 9 "dependencies": [ "bookmarks" ], |
| 10 "types": [ | 10 "types": [ |
| 11 { | 11 { |
| 12 "id": "BookmarkNodeDataElement", | 12 "id": "BookmarkNodeDataElement", |
| 13 "nodoc": true, | 13 "nodoc": true, |
| 14 "type": "object", | 14 "type": "object", |
| 15 "properties": { | 15 "properties": { |
| 16 "id": { | 16 "id": { |
| 17 "type": "string", | 17 "type": "string", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "name": "onDrop", | 243 "name": "onDrop", |
| 244 "type": "function", | 244 "type": "function", |
| 245 "description": "Fired when the user drops bookmarks on the document", | 245 "description": "Fired when the user drops bookmarks on the document", |
| 246 "parameters": [ | 246 "parameters": [ |
| 247 {"name": "bookmarkNodeData", "$ref": "BookmarkNodeData"} | 247 {"name": "bookmarkNodeData", "$ref": "BookmarkNodeData"} |
| 248 ] | 248 ] |
| 249 } | 249 } |
| 250 ] | 250 ] |
| 251 } | 251 } |
| 252 ] | 252 ] |
| OLD | NEW |