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

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

Issue 797553004: Add externs for gallery. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add externs/platform.js to file_manager/background. Created 6 years 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, string>} 12 * @type {!Object.<string, 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
22 /**
23 * File Manager.
24 * @constructor
25 * @struct
26 */
27 function FileManager() {}
fukino 2014/12/22 03:30:10 It looks unclear that this definition is required
yawano 2014/12/22 04:04:41 Done. This definition is required by file_manager_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698