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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 23536047: Files.app: Move the error handler to the top of combined script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments. 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/main_scripts.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- 2 <!--
3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <!-- We have to set some default title, or chrome will use the page name. 9 <!-- We have to set some default title, or chrome will use the page name.
10 -- As soon as we init and change to a directory, we'll show the directory 10 -- As soon as we init and change to a directory, we'll show the directory
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 <script src="chrome://resources/js/cr/ui/grid.js"></script> 73 <script src="chrome://resources/js/cr/ui/grid.js"></script>
74 74
75 <script src="chrome://resources/js/cr/ui/command.js"></script> 75 <script src="chrome://resources/js/cr/ui/command.js"></script>
76 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 76 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
77 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 77 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
78 <script src="chrome://resources/js/cr/ui/menu.js"></script> 78 <script src="chrome://resources/js/cr/ui/menu.js"></script>
79 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 79 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
80 <script src="chrome://resources/js/cr/ui/context_menu_handler.js"></script > 80 <script src="chrome://resources/js/cr/ui/context_menu_handler.js"></script >
81 81
82 <!-- This script must be loaded before all other Files.app's scripts. -->
83 <script src="js/error_counter.js"></script>
84
82 <script src="js/combobutton.js"></script> 85 <script src="js/combobutton.js"></script>
83 <script src="js/commandbutton.js"></script> 86 <script src="js/commandbutton.js"></script>
84 <script src="js/ui/file_manager_dialog_base.js"></script> 87 <script src="js/ui/file_manager_dialog_base.js"></script>
85 88
86 <script src="js/app_installer.js"></script> 89 <script src="js/app_installer.js"></script>
87 <script src="js/async_util.js"></script> 90 <script src="js/async_util.js"></script>
88 <script src="js/path_util.js"></script> 91 <script src="js/path_util.js"></script>
89 <script src="js/util.js"></script> 92 <script src="js/util.js"></script>
90 <script src="js/action_choice_util.js"></script> 93 <script src="js/action_choice_util.js"></script>
91 <script src="js/breadcrumbs_controller.js"></script> 94 <script src="js/breadcrumbs_controller.js"></script>
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 <select class="file-type"></select> 415 <select class="file-type"></select>
413 <button class="ok" disabled tabindex="7"></button> 416 <button class="ok" disabled tabindex="7"></button>
414 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></button > 417 <button class="cancel" i18n-content="CANCEL_LABEL" tabindex="8"></button >
415 </div> 418 </div>
416 </div> 419 </div>
417 <div id="drag-container"></div> 420 <div id="drag-container"></div>
418 <iframe id="command-dispatcher" hidden></iframe> 421 <iframe id="command-dispatcher" hidden></iframe>
419 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 422 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
420 </body> 423 </body>
421 </html> 424 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/main_scripts.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698