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

Side by Side Diff: chrome/browser/resources/file_manager/js/main_scripts.js

Issue 23483029: [Files.app] Not to capture mouse events when the suggest app dialog is visible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename enableDragOnTitleArea -> onDialogShownOrHidden Created 7 years, 3 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 | Annotate | Revision Log
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698