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

Side by Side Diff: ui/file_manager/externs/gallery_foreground.js

Issue 2890123003: Compile file_manager and eliminate gyp v1 from Files App! (Closed)
Patch Set: Fix test failures. Format. Created 3 years, 7 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
OLDNEW
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 /** 5 /**
6 * BackgroundComponents. 6 * BackgroundComponents.
7 * @constructor 7 * @constructor
8 * @struct 8 * @struct
9 */ 9 */
10 function BackgroundComponents() { 10 function BackgroundComponents() {
11 /** 11 /**
12 * @type {!Object<string>} 12 * @type {!Object<string>}
13 */ 13 */
14 this.stringData; 14 this.stringData;
15 15
16 /** 16 /**
17 * @type {!VolumeManager} 17 * @type {!VolumeManager}
18 */ 18 */
19 this.volumeManager; 19 this.volumeManager;
20 } 20 }
21 21
22 /** 22 /**
23 * File Manager. This definition is required by
24 * ui/file_manager/file_manager/foreground/js/ui/file_manager_dialog_base.js.
25 *
26 * @constructor
27 * @struct
28 */
29 function FileManager() {}
30
31 /**
32 * A global flag which indicates whether it is in tests or not. This is set in 23 * A global flag which indicates whether it is in tests or not. This is set in
33 * gallery/js/background.js. 24 * gallery/js/background.js.
34 * 25 *
35 * @type {boolean} 26 * @type {boolean}
36 */ 27 */
37 Window.prototype.IN_TEST; 28 Window.prototype.IN_TEST;
38 29
39 /** 30 /**
40 * @type {string} 31 * @type {string}
41 */ 32 */
42 Entry.prototype.cachedUrl; 33 Entry.prototype.cachedUrl;
OLDNEW
« no previous file with comments | « ui/file_manager/externs/file_browser_background.js ('k') | ui/file_manager/file_manager/background/js/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698