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

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: rebase 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu_item.js"/> 61 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu_item.js"/>
62 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu.js"/> 62 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu.js"/>
63 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu_button.js"/> 63 //<include src="../../../../../ui/webui/resources/js/cr/ui/menu_button.js"/>
64 //<include src="../../../../../ui/webui/resources/js/cr/ui/context_menu_handler. js"/> 64 //<include src="../../../../../ui/webui/resources/js/cr/ui/context_menu_handler. js"/>
65 65
66 (function() { 66 (function() {
67 // 'strict mode' is invoked for this scope. 67 // 'strict mode' is invoked for this scope.
68 68
69 //<include src="combobutton.js"/> 69 //<include src="combobutton.js"/>
70 //<include src="commandbutton.js"/> 70 //<include src="commandbutton.js"/>
71 //<include src="ui/file_manager_dialog_base.js"/>
71 // 72 //
72 //<include src="app_installer.js"/> 73 //<include src="app_installer.js"/>
73 //<include src="async_util.js"/> 74 //<include src="async_util.js"/>
74 //<include src="path_util.js"/> 75 //<include src="path_util.js"/>
75 //<include src="util.js"/> 76 //<include src="util.js"/>
76 //<include src="action_choice_util.js"/> 77 //<include src="action_choice_util.js"/>
77 //<include src="breadcrumbs_controller.js"/> 78 //<include src="breadcrumbs_controller.js"/>
78 //<include src="butter_bar.js"/> 79 //<include src="butter_bar.js"/>
79 //<include src="cws_container_client.js"/> 80 //<include src="cws_container_client.js"/>
80 //<include src="directory_contents.js"/> 81 //<include src="directory_contents.js"/>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // Global fileManager reference useful for poking at from the console. 117 // Global fileManager reference useful for poking at from the console.
117 window.fileManager = fileManager; 118 window.fileManager = fileManager;
118 119
119 // Exports 120 // Exports
120 window.util = util; 121 window.util = util;
121 window.FileOperationManagerWrapper = FileOperationManagerWrapper; 122 window.FileOperationManagerWrapper = FileOperationManagerWrapper;
122 123
123 window.unload = unload; 124 window.unload = unload;
124 125
125 })(); 126 })();
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | chrome/browser/resources/file_manager/js/share_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698