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

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

Issue 10025007: Convert tabs, windows, and extension APIs to feature system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blah Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/extension.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "uses_feature_system": true, 8 "uses_feature_system": true,
9 "extension_types": ["extension", "packaged_app", "platform_app"],
10 "contexts": ["blessed_extension"],
9 "dependencies": ["permission:bookmarks"], 11 "dependencies": ["permission:bookmarks"],
10 "contexts": ["blessed_extension"],
11 "types": [ 12 "types": [
12 { 13 {
13 "id": "BookmarkTreeNode", 14 "id": "BookmarkTreeNode",
14 "type": "object", 15 "type": "object",
15 "description": "A node (either a bookmark or a folder) in the bookmark t ree. Child nodes are ordered within their parent folder.", 16 "description": "A node (either a bookmark or a folder) in the bookmark t ree. Child nodes are ordered within their parent folder.",
16 "properties": { 17 "properties": {
17 "id": {"type": "string", "minimum": 0, "description": "The unique iden tifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted."}, 18 "id": {"type": "string", "minimum": 0, "description": "The unique iden tifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted."},
18 "parentId": {"type": "string", "minimum": 0, "optional": true, "descri ption": "The <code>id</code> of the parent folder. Omitted for the root node."} , 19 "parentId": {"type": "string", "minimum": 0, "optional": true, "descri ption": "The <code>id</code> of the parent folder. Omitted for the root node."} ,
19 "index": {"type": "integer", "optional": true, "description": "The 0-b ased position of this node within its parent folder."}, 20 "index": {"type": "integer", "optional": true, "description": "The 0-b ased position of this node within its parent folder."},
20 "url": {"type": "string", "optional": true, "description": "The URL na vigated to when a user clicks the bookmark. Omitted for folders."}, 21 "url": {"type": "string", "optional": true, "description": "The URL na vigated to when a user clicks the bookmark. Omitted for folders."},
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 }, 331 },
331 { 332 {
332 "name": "onImportEnded", 333 "name": "onImportEnded",
333 "type": "function", 334 "type": "function",
334 "description": "Fired when a bookmark import session is ended.", 335 "description": "Fired when a bookmark import session is ended.",
335 "parameters": [] 336 "parameters": []
336 } 337 }
337 ] 338 ]
338 } 339 }
339 ] 340 ]
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/api/extension.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698