OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 * @interface | 6 * @interface |
7 * @struct | 7 * @struct |
8 */ | 8 */ |
9 var FileBrowserBackground = function() {}; | 9 var FileBrowserBackground = function() {}; |
10 | 10 |
11 /** | 11 /** |
12 * @param {function()} callback | 12 * @param {function()} callback |
13 */ | 13 */ |
14 FileBrowserBackground.prototype.ready = function(callback) {}; | 14 FileBrowserBackground.prototype.ready = function(callback) {}; |
15 | 15 |
16 /** @type {!analytics.Tracker} */ | 16 /** @type {!analytics.Tracker} */ |
17 FileBrowserBackground.prototype.tracker; | 17 FileBrowserBackground.prototype.tracker; |
OLD | NEW |