| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 //<include src="ui/files_alert_dialog.js"> | 161 //<include src="ui/files_alert_dialog.js"> |
| 162 //<include src="ui/files_confirm_dialog.js"> | 162 //<include src="ui/files_confirm_dialog.js"> |
| 163 //<include src="ui/files_menu.js"> | 163 //<include src="ui/files_menu.js"> |
| 164 //<include src="ui/gear_menu.js"> | 164 //<include src="ui/gear_menu.js"> |
| 165 //<include src="ui/list_container.js"> | 165 //<include src="ui/list_container.js"> |
| 166 //<include src="ui/location_line.js"> | 166 //<include src="ui/location_line.js"> |
| 167 //<include src="ui/multi_file_details.js"> | 167 //<include src="ui/multi_file_details.js"> |
| 168 //<include src="ui/multi_profile_share_dialog.js"> | 168 //<include src="ui/multi_profile_share_dialog.js"> |
| 169 //<include src="ui/progress_center_panel.js"> | 169 //<include src="ui/progress_center_panel.js"> |
| 170 //<include src="ui/providers_menu.js"> | 170 //<include src="ui/providers_menu.js"> |
| 171 //<include src="ui/scrollbar.js"> | |
| 172 //<include src="ui/search_box.js"> | 171 //<include src="ui/search_box.js"> |
| 173 //<include src="ui/share_dialog.js"> | 172 //<include src="ui/share_dialog.js"> |
| 174 //<include src="ui/single_file_details.js"> | 173 //<include src="ui/single_file_details.js"> |
| 175 //<include src="ui/suggest_apps_dialog.js"> | 174 //<include src="ui/suggest_apps_dialog.js"> |
| 176 //<include src="main_window_component.js"> | 175 //<include src="main_window_component.js"> |
| 177 //<include src="volume_manager_wrapper.js"> | 176 //<include src="volume_manager_wrapper.js"> |
| 178 | 177 |
| 179 // // For accurate load performance tracking place main.js should be | 178 // // For accurate load performance tracking place main.js should be |
| 180 // // the last include to include. | 179 // // the last include to include. |
| 181 //<include src="main.js"> | 180 //<include src="main.js"> |
| 182 | 181 |
| 183 // Global fileManager reference useful for poking at from the console. | 182 // Global fileManager reference useful for poking at from the console. |
| 184 window.fileManager = fileManager; | 183 window.fileManager = fileManager; |
| 185 | 184 |
| 186 // Exports | 185 // Exports |
| 187 window.util = util; | 186 window.util = util; |
| 188 })(); | 187 })(); |
| OLD | NEW |