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

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

Issue 10966025: Change bookmarkManager API from experimental to private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bookmarkManager->bookmarkManagerPrivate Created 8 years, 3 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
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": "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
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 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698