| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 /** @fileoverview Externs generated from namespace: bookmarkManagerPrivate */ | 5 /** @fileoverview Externs generated from namespace: bookmarkManagerPrivate */ |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * @typedef {{ | 8 * @typedef {{ |
| 9 * id: (string|undefined), | 9 * id: (string|undefined), |
| 10 * parentId: (string|undefined), | 10 * parentId: (string|undefined), |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 */ | 104 */ |
| 105 chrome.bookmarkManagerPrivate.getSubtree = function(id, foldersOnly, callback) {
}; | 105 chrome.bookmarkManagerPrivate.getSubtree = function(id, foldersOnly, callback) {
}; |
| 106 | 106 |
| 107 /** | 107 /** |
| 108 * Whether bookmarks can be modified | 108 * Whether bookmarks can be modified |
| 109 * @param {Function} callback | 109 * @param {Function} callback |
| 110 */ | 110 */ |
| 111 chrome.bookmarkManagerPrivate.canEdit = function(callback) {}; | 111 chrome.bookmarkManagerPrivate.canEdit = function(callback) {}; |
| 112 | 112 |
| 113 /** | 113 /** |
| 114 * Whether bookmarks can be opened in new windows | |
| 115 * @param {Function} callback | |
| 116 */ | |
| 117 chrome.bookmarkManagerPrivate.canOpenNewWindows = function(callback) {}; | |
| 118 | |
| 119 /** | |
| 120 * Recursively removes list of bookmarks nodes. | 114 * Recursively removes list of bookmarks nodes. |
| 121 * @param {Array} idList An array of string-valued ids | 115 * @param {Array} idList An array of string-valued ids |
| 122 * @param {Function=} callback | 116 * @param {Function=} callback |
| 123 */ | 117 */ |
| 124 chrome.bookmarkManagerPrivate.removeTrees = function(idList, callback) {}; | 118 chrome.bookmarkManagerPrivate.removeTrees = function(idList, callback) {}; |
| 125 | 119 |
| 126 /** | 120 /** |
| 127 */ | 121 */ |
| 128 chrome.bookmarkManagerPrivate.recordLaunch = function() {}; | 122 chrome.bookmarkManagerPrivate.recordLaunch = function() {}; |
| 129 | 123 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 chrome.bookmarkManagerPrivate.onDragEnter; | 184 chrome.bookmarkManagerPrivate.onDragEnter; |
| 191 | 185 |
| 192 /** @type {!ChromeEvent} */ | 186 /** @type {!ChromeEvent} */ |
| 193 chrome.bookmarkManagerPrivate.onDragLeave; | 187 chrome.bookmarkManagerPrivate.onDragLeave; |
| 194 | 188 |
| 195 /** @type {!ChromeEvent} */ | 189 /** @type {!ChromeEvent} */ |
| 196 chrome.bookmarkManagerPrivate.onDrop; | 190 chrome.bookmarkManagerPrivate.onDrop; |
| 197 | 191 |
| 198 /** @type {!ChromeEvent} */ | 192 /** @type {!ChromeEvent} */ |
| 199 chrome.bookmarkManagerPrivate.onMetaInfoChanged; | 193 chrome.bookmarkManagerPrivate.onMetaInfoChanged; |
| OLD | NEW |