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

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

Issue 2846163002: Compile file_manager_commands in gyp v2. (Closed)
Patch Set: . 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
« no previous file with comments | « no previous file | ui/file_manager/externs/compiled_resources2.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 /**
6 * Interface on which |CommandHandler| depends.
7 * @interface
8 */
9 function CommandHandlerDeps(){};
10
11 /**
12 * @type {ActionsController}
13 */
14 CommandHandlerDeps.prototype.actionsController;
15
16 /**
17 * @type {BackgroundWindow}
18 */
19 CommandHandlerDeps.prototype.backgroundPage;
20
21 /**
22 * @type {DialogType}
23 */
24 CommandHandlerDeps.prototype.dialogType;
25
26 /**
27 * @type {DirectoryModel}
28 */
29 CommandHandlerDeps.prototype.directoryModel;
30
31 /**
32 * @type {DirectoryTree}
33 */
34 CommandHandlerDeps.prototype.directoryTree;
35
36 /**
37 * @type {DirectoryTreeNamingController}
38 */
39 CommandHandlerDeps.prototype.directoryTreeNamingController;
40
41 /**
42 * @type {Document}
43 */
44 CommandHandlerDeps.prototype.document;
45
46 /**
47 * @type {FileFilter}
48 */
49 CommandHandlerDeps.prototype.fileFilter;
50
51 /**
52 * @type {FileOperationManager}
53 */
54 CommandHandlerDeps.prototype.fileOperationManager;
55
56 /**
57 * @type {FileTransferController}
58 */
59 CommandHandlerDeps.prototype.fileTransferController;
60
61 /**
62 * @type {FileSelectionHandler}
63 */
64 CommandHandlerDeps.prototype.selectionHandler;
65
66 /**
67 * @type {NamingController}
68 */
69 CommandHandlerDeps.prototype.namingController;
70
71 /**
72 * @type {ProvidersModel}
73 */
74 CommandHandlerDeps.prototype.providersModel;
75
76 /**
77 * @type {SpinnerController}
78 */
79 CommandHandlerDeps.prototype.spinnerController;
80
81 /**
82 * @type {TaskController}
83 */
84 CommandHandlerDeps.prototype.taskController;
85
86 /**
87 * @type {FileManagerUI}
88 */
89 CommandHandlerDeps.prototype.ui;
90
91 /**
92 * @type {VolumeManagerWrapper}
93 */
94 CommandHandlerDeps.prototype.volumeManager;
95
96 /**
97 * @return {DirectoryEntry|FakeEntry}
98 */
99 CommandHandlerDeps.prototype.getCurrentDirectoryEntry = function() {};
100
101 /**
102 * @return {FileSelection}
103 */
104 CommandHandlerDeps.prototype.getSelection = function() {};
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/externs/compiled_resources2.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698