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

Side by Side Diff: ui/file_manager/file_manager/foreground/js/main_scripts.js

Issue 900743002: Move preview panel's components to toolbar and footer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a TODO comment about customized CommandButton. Created 5 years, 10 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
OLDNEW
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 //<include src="file_transfer_controller.js"> 97 //<include src="file_transfer_controller.js">
98 //<include src="file_watcher.js"> 98 //<include src="file_watcher.js">
99 //<include src="folder_shortcuts_data_model.js"> 99 //<include src="folder_shortcuts_data_model.js">
100 //<include src="gear_menu_controller.js"> 100 //<include src="gear_menu_controller.js">
101 //<include src="import_controller.js"> 101 //<include src="import_controller.js">
102 //<include src="launch_param.js"> 102 //<include src="launch_param.js">
103 //<include src="metadata/metadata_cache.js"> 103 //<include src="metadata/metadata_cache.js">
104 //<include src="metadata_update_controller.js"> 104 //<include src="metadata_update_controller.js">
105 //<include src="naming_controller.js"> 105 //<include src="naming_controller.js">
106 //<include src="navigation_list_model.js"> 106 //<include src="navigation_list_model.js">
107 //<include src="preview_panel_model.js">
108 //<include src="progress_center_item_group.js"> 107 //<include src="progress_center_item_group.js">
109 //<include src="scan_controller.js"> 108 //<include src="scan_controller.js">
110 //<include src="search_controller.js"> 109 //<include src="search_controller.js">
111 //<include src="share_client.js"> 110 //<include src="share_client.js">
112 //<include src="spinner_controller.js"> 111 //<include src="spinner_controller.js">
113 //<include src="task_controller.js"> 112 //<include src="task_controller.js">
114 //<include src="thumbnail_loader.js"> 113 //<include src="thumbnail_loader.js">
115 //<include src="ui/banners.js" > 114 //<include src="ui/banners.js" >
116 //<include src="ui/conflict_dialog.js"> 115 //<include src="ui/conflict_dialog.js">
117 //<include src="ui/default_action_dialog.js"> 116 //<include src="ui/default_action_dialog.js">
118 //<include src="ui/dialog_footer.js"> 117 //<include src="ui/dialog_footer.js">
119 //<include src="ui/directory_tree.js"> 118 //<include src="ui/directory_tree.js">
120 //<include src="ui/drag_selector.js"> 119 //<include src="ui/drag_selector.js">
121 //<include src="ui/error_dialog.js"> 120 //<include src="ui/error_dialog.js">
122 //<include src="ui/file_grid.js"> 121 //<include src="ui/file_grid.js">
123 //<include src="ui/file_manager_ui.js"> 122 //<include src="ui/file_manager_ui.js">
124 //<include src="ui/file_table.js"> 123 //<include src="ui/file_table.js">
125 //<include src="ui/gear_menu.js"> 124 //<include src="ui/gear_menu.js">
126 //<include src="ui/list_container.js"> 125 //<include src="ui/list_container.js">
127 //<include src="ui/location_line.js"> 126 //<include src="ui/location_line.js">
128 //<include src="ui/multi_profile_share_dialog.js"> 127 //<include src="ui/multi_profile_share_dialog.js">
129 //<include src="ui/preview_panel.js">
130 //<include src="ui/progress_center_panel.js"> 128 //<include src="ui/progress_center_panel.js">
131 //<include src="ui/scrollbar.js"> 129 //<include src="ui/scrollbar.js">
132 //<include src="ui/search_box.js"> 130 //<include src="ui/search_box.js">
133 //<include src="ui/share_dialog.js"> 131 //<include src="ui/share_dialog.js">
134 //<include src="ui/suggest_apps_dialog.js"> 132 //<include src="ui/suggest_apps_dialog.js">
135 //<include src="main_window_component.js"> 133 //<include src="main_window_component.js">
136 //<include src="volume_manager_wrapper.js"> 134 //<include src="volume_manager_wrapper.js">
137 135
138 // // For accurate load performance tracking place main.js should be 136 // // For accurate load performance tracking place main.js should be
139 // // the last include to include. 137 // // the last include to include.
140 //<include src="main.js"> 138 //<include src="main.js">
141 139
142 // Global fileManager reference useful for poking at from the console. 140 // Global fileManager reference useful for poking at from the console.
143 window.fileManager = fileManager; 141 window.fileManager = fileManager;
144 142
145 // Exports 143 // Exports
146 window.util = util; 144 window.util = util;
147 })(); 145 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698