| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 * This definition is required by | |
| 7 * ui/file_manager/file_manager/common/js/util.js. | |
| 8 * @type {string} | |
| 9 */ | |
| 10 Window.prototype.appID; | |
| 11 | |
| 12 /** | |
| 13 * @typedef {?{ | 6 * @typedef {?{ |
| 14 * position: (number|undefined), | 7 * position: (number|undefined), |
| 15 * time: (number|undefined), | 8 * time: (number|undefined), |
| 16 * expanded: (boolean|undefined), | 9 * expanded: (boolean|undefined), |
| 17 * items: (!Array<string>|undefined) | 10 * items: (!Array<string>|undefined) |
| 18 * }} | 11 * }} |
| 19 */ | 12 */ |
| 20 var Playlist; | 13 var Playlist; |
| 21 | 14 |
| 22 /** | 15 /** |
| 23 * @type {(Playlist|Object|undefined)} | 16 * @type {(Playlist|Object|undefined)} |
| 24 */ | 17 */ |
| 25 Window.prototype.appState; | 18 Window.prototype.appState; |
| 26 | 19 |
| 27 /** | 20 /** |
| 28 * @type {(boolean|undefined)} | 21 * @type {(boolean|undefined)} |
| 29 */ | 22 */ |
| 30 Window.prototype.appReopen; | 23 Window.prototype.appReopen; |
| OLD | NEW |