| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 //<include src="cws_container_client.js"/> | 79 //<include src="cws_container_client.js"/> |
| 80 //<include src="directory_contents.js"/> | 80 //<include src="directory_contents.js"/> |
| 81 //<include src="directory_model.js"/> | 81 //<include src="directory_model.js"/> |
| 82 //<include src="directory_tree.js"/> | 82 //<include src="directory_tree.js"/> |
| 83 //<include src="drag_selector.js"/> | 83 //<include src="drag_selector.js"/> |
| 84 //<include src="drive_banners.js" /> | 84 //<include src="drive_banners.js" /> |
| 85 //<include src="error_dialog.js"/> | 85 //<include src="error_dialog.js"/> |
| 86 //<include src="file_operation_manager_wrapper.js"/> | 86 //<include src="file_operation_manager_wrapper.js"/> |
| 87 //<include src="file_grid.js"/> | 87 //<include src="file_grid.js"/> |
| 88 //<include src="file_manager.js"/> | 88 //<include src="file_manager.js"/> |
| 89 //<include src="file_manager_dialog_base.js"/> |
| 89 //<include src="file_manager_pyauto.js"/> | 90 //<include src="file_manager_pyauto.js"/> |
| 90 //<include src="file_selection.js"/> | 91 //<include src="file_selection.js"/> |
| 91 //<include src="file_table.js"/> | 92 //<include src="file_table.js"/> |
| 92 //<include src="file_tasks.js"/> | 93 //<include src="file_tasks.js"/> |
| 93 //<include src="file_transfer_controller.js"/> | 94 //<include src="file_transfer_controller.js"/> |
| 94 //<include src="file_type.js"/> | 95 //<include src="file_type.js"/> |
| 95 //<include src="file_watcher.js"/> | 96 //<include src="file_watcher.js"/> |
| 96 //<include src="folder_shortcuts_data_model.js"/> | 97 //<include src="folder_shortcuts_data_model.js"/> |
| 97 //<include src="navigation_list.js"/> | 98 //<include src="navigation_list.js"/> |
| 98 //<include src="scrollbar.js"/> | 99 //<include src="scrollbar.js"/> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 115 // Global fileManager reference useful for poking at from the console. | 116 // Global fileManager reference useful for poking at from the console. |
| 116 window.fileManager = fileManager; | 117 window.fileManager = fileManager; |
| 117 | 118 |
| 118 // Exports | 119 // Exports |
| 119 window.util = util; | 120 window.util = util; |
| 120 window.FileOperationManagerWrapper = FileOperationManagerWrapper; | 121 window.FileOperationManagerWrapper = FileOperationManagerWrapper; |
| 121 | 122 |
| 122 window.unload = unload; | 123 window.unload = unload; |
| 123 | 124 |
| 124 })(); | 125 })(); |
| OLD | NEW |