OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // The include directives are put into Javascript-style comments to prevent | 5 // The include directives are put into Javascript-style comments to prevent |
6 // parsing errors in non-flattened mode. The flattener still sees them. | 6 // parsing errors in non-flattened mode. The flattener still sees them. |
7 // Note that this makes the flattener to comment out the first line of the | 7 // Note that this makes the flattener to comment out the first line of the |
8 // included file but that's all right since any javascript file should start | 8 // included file but that's all right since any javascript file should start |
9 // with a copyright comment anyway. | 9 // with a copyright comment anyway. |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 //<include src="../../common/js/async_util.js"/> | 72 //<include src="../../common/js/async_util.js"/> |
73 //<include src="../../common/js/path_util.js"/> | 73 //<include src="../../common/js/path_util.js"/> |
74 //<include src="../../common/js/util.js"/> | 74 //<include src="../../common/js/util.js"/> |
75 //<include src="../../common/js/progress_center_common.js"> | 75 //<include src="../../common/js/progress_center_common.js"> |
76 // | 76 // |
77 //<include src="combobutton.js"/> | 77 //<include src="combobutton.js"/> |
78 //<include src="commandbutton.js"/> | 78 //<include src="commandbutton.js"/> |
79 //<include src="ui/file_manager_dialog_base.js"/> | 79 //<include src="ui/file_manager_dialog_base.js"/> |
80 // | 80 // |
81 //<include src="app_installer.js"/> | 81 //<include src="app_installer.js"/> |
82 //<include src="butter_bar.js"/> | |
83 //<include src="cws_container_client.js"/> | 82 //<include src="cws_container_client.js"/> |
84 //<include src="directory_contents.js"/> | 83 //<include src="directory_contents.js"/> |
85 //<include src="directory_model.js"/> | 84 //<include src="directory_model.js"/> |
86 //<include src="directory_tree.js"/> | 85 //<include src="directory_tree.js"/> |
87 //<include src="drag_selector.js"/> | 86 //<include src="drag_selector.js"/> |
88 //<include src="drive_banners.js" /> | 87 //<include src="drive_banners.js" /> |
89 //<include src="error_dialog.js"/> | 88 //<include src="error_dialog.js"/> |
90 //<include src="file_operation_manager_wrapper.js"/> | 89 //<include src="file_operation_manager_wrapper.js"/> |
91 //<include src="file_grid.js"/> | 90 //<include src="file_grid.js"/> |
92 //<include src="file_manager.js"/> | 91 //<include src="file_manager.js"/> |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // Global fileManager reference useful for poking at from the console. | 124 // Global fileManager reference useful for poking at from the console. |
126 window.fileManager = fileManager; | 125 window.fileManager = fileManager; |
127 | 126 |
128 // Exports | 127 // Exports |
129 window.util = util; | 128 window.util = util; |
130 window.FileOperationManagerWrapper = FileOperationManagerWrapper; | 129 window.FileOperationManagerWrapper = FileOperationManagerWrapper; |
131 | 130 |
132 window.unload = unload; | 131 window.unload = unload; |
133 | 132 |
134 })(); | 133 })(); |
OLD | NEW |