| 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": "bookmarks", | 7 "namespace": "bookmarks", |
| 8 "description": "Use the <code>chrome.bookmarks</code> API to create, organiz
e, and otherwise manipulate bookmarks. Also see <a href='override'>Override Page
s</a>, which you can use to create a custom Bookmark Manager page.", | 8 "description": "Use the <code>chrome.bookmarks</code> API to create, organiz
e, and otherwise manipulate bookmarks. Also see <a href='override'>Override Page
s</a>, which you can use to create a custom Bookmark Manager page.", |
| 9 "properties": { | 9 "properties": { |
| 10 "MAX_WRITE_OPERATIONS_PER_HOUR": { | 10 "MAX_WRITE_OPERATIONS_PER_HOUR": { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 }, | 56 }, |
| 57 "dateGroupModified": { | 57 "dateGroupModified": { |
| 58 "type": "number", | 58 "type": "number", |
| 59 "optional": true, | 59 "optional": true, |
| 60 "description": "When the contents of this folder last changed, in mi
lliseconds since the epoch." | 60 "description": "When the contents of this folder last changed, in mi
lliseconds since the epoch." |
| 61 }, | 61 }, |
| 62 "unmodifiable": { | 62 "unmodifiable": { |
| 63 "type": "string", | 63 "type": "string", |
| 64 "enum": ["managed"], | 64 "enum": ["managed"], |
| 65 "optional": true, | 65 "optional": true, |
| 66 "description": "Indicates the reason why this node is unmodifiable.
The <var>managed</var> value indicates that this node was configured by the syst
em administrator. Omitted if the node can be modified by the user and the extens
ion (default)." | 66 "description": "Indicates the reason why this node is unmodifiable.
The <var>managed</var> value indicates that this node was configured by the syst
em administrator or by the custodian of a supervised user. Omitted if the node c
an be modified by the user and the extension (default)." |
| 67 }, | 67 }, |
| 68 "children": { | 68 "children": { |
| 69 "type": "array", | 69 "type": "array", |
| 70 "optional": true, | 70 "optional": true, |
| 71 "items": { "$ref": "BookmarkTreeNode" }, | 71 "items": { "$ref": "BookmarkTreeNode" }, |
| 72 "description": "An ordered list of children of this node." | 72 "description": "An ordered list of children of this node." |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 }, | 75 }, |
| 76 { | 76 { |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 }, | 545 }, |
| 546 { | 546 { |
| 547 "name": "onImportEnded", | 547 "name": "onImportEnded", |
| 548 "type": "function", | 548 "type": "function", |
| 549 "description": "Fired when a bookmark import session is ended.", | 549 "description": "Fired when a bookmark import session is ended.", |
| 550 "parameters": [] | 550 "parameters": [] |
| 551 } | 551 } |
| 552 ] | 552 ] |
| 553 } | 553 } |
| 554 ] | 554 ] |
| OLD | NEW |