Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: chrome/common/extensions/api/bookmarks.json

Issue 411053002: Remove bookmarks API client-side write operations limits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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": {
10 "MAX_WRITE_OPERATIONS_PER_HOUR": {
not at google - send to devlin 2014/07/23 19:17:42 oh and instead of removing this can you add a "dep
Mike Wittman 2014/07/23 19:42:53 Done.
11 "value": 100,
12 "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."
13 },
14 "MAX_SUSTAINED_WRITE_OPERATIONS_PER_MINUTE": {
15 "value": 2,
16 "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."
17 }
18 },
19 "types": [ 9 "types": [
20 { 10 {
21 "id": "BookmarkTreeNode", 11 "id": "BookmarkTreeNode",
22 "type": "object", 12 "type": "object",
23 "description": "A node (either a bookmark or a folder) in the bookmark t ree. Child nodes are ordered within their parent folder.", 13 "description": "A node (either a bookmark or a folder) in the bookmark t ree. Child nodes are ordered within their parent folder.",
24 "properties": { 14 "properties": {
25 "id": { 15 "id": {
26 "type": "string", 16 "type": "string",
27 "minimum": 0, 17 "minimum": 0,
28 "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." 18 "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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 }, 533 },
544 { 534 {
545 "name": "onImportEnded", 535 "name": "onImportEnded",
546 "type": "function", 536 "type": "function",
547 "description": "Fired when a bookmark import session is ended.", 537 "description": "Fired when a bookmark import session is ended.",
548 "parameters": [] 538 "parameters": []
549 } 539 }
550 ] 540 ]
551 } 541 }
552 ] 542 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698