| 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 "uses_feature_system": true, | 8 "uses_feature_system": true, |
| 9 "channel": "stable", | 9 "channel": "stable", |
| 10 "dependencies": ["permission:bookmarks"], | 10 "dependencies": ["permission:bookmarks"], |
| 11 "contexts": ["blessed_extension"], | 11 "contexts": ["blessed_extension"], |
| 12 "properties": { |
| 13 "MAX_WRITE_OPERATIONS_PER_HOUR": { |
| 14 "value": 100, |
| 15 "description": "The maximum number of <code>move</code>, <code>update</c
ode>, <code>create</code>, or <code>remove</code> operations that can be perform
ed each hour. Updates that would cause this limit to be exceeded fail." |
| 16 }, |
| 17 "MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE": { |
| 18 "value": 2, |
| 19 "description": "The maximum number of <code>move</code>, <code>update</c
ode>, <code>create</code>, or <code>remove</code> operations that can be perform
ed each minute, sustained over 10 minutes. Updates that would cause this limit t
o be exceeded fail." |
| 20 } |
| 21 }, |
| 12 "types": [ | 22 "types": [ |
| 13 { | 23 { |
| 14 "id": "BookmarkTreeNode", | 24 "id": "BookmarkTreeNode", |
| 15 "type": "object", | 25 "type": "object", |
| 16 "description": "A node (either a bookmark or a folder) in the bookmark t
ree. Child nodes are ordered within their parent folder.", | 26 "description": "A node (either a bookmark or a folder) in the bookmark t
ree. Child nodes are ordered within their parent folder.", |
| 17 "properties": { | 27 "properties": { |
| 18 "id": { | 28 "id": { |
| 19 "type": "string", | 29 "type": "string", |
| 20 "minimum": 0, | 30 "minimum": 0, |
| 21 "description": "The unique identifier for the node. IDs are unique w
ithin the current profile, and they remain valid even after the browser is resta
rted." | 31 "description": "The unique identifier for the node. IDs are unique w
ithin the current profile, and they remain valid even after the browser is resta
rted." |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 }, | 507 }, |
| 498 { | 508 { |
| 499 "name": "onImportEnded", | 509 "name": "onImportEnded", |
| 500 "type": "function", | 510 "type": "function", |
| 501 "description": "Fired when a bookmark import session is ended.", | 511 "description": "Fired when a bookmark import session is ended.", |
| 502 "parameters": [] | 512 "parameters": [] |
| 503 } | 513 } |
| 504 ] | 514 ] |
| 505 } | 515 } |
| 506 ] | 516 ] |
| OLD | NEW |