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

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

Issue 15643006: Files.app: Added DragSelector class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Yoshiki's comments. Created 7 years, 6 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
« 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 <script src="js/commandbutton.js"></script> 83 <script src="js/commandbutton.js"></script>
84 84
85 <script src="js/async_util.js"></script> 85 <script src="js/async_util.js"></script>
86 <script src="js/path_util.js"></script> 86 <script src="js/path_util.js"></script>
87 <script src="js/util.js"></script> 87 <script src="js/util.js"></script>
88 <script src="js/action_choice_util.js"></script> 88 <script src="js/action_choice_util.js"></script>
89 <script src="js/breadcrumbs_controller.js"></script> 89 <script src="js/breadcrumbs_controller.js"></script>
90 <script src="js/butter_bar.js"></script> 90 <script src="js/butter_bar.js"></script>
91 <script src="js/directory_contents.js"></script> 91 <script src="js/directory_contents.js"></script>
92 <script src="js/directory_model.js"></script> 92 <script src="js/directory_model.js"></script>
93 <script src="js/drag_selector.js"></script>
93 <script src="js/drive_banners.js"></script> 94 <script src="js/drive_banners.js"></script>
94 <script src="js/file_copy_manager_wrapper.js"></script> 95 <script src="js/file_copy_manager_wrapper.js"></script>
95 <script src="js/file_grid.js"></script> 96 <script src="js/file_grid.js"></script>
96 <script src="js/file_manager.js"></script> 97 <script src="js/file_manager.js"></script>
97 <script src="js/file_manager_pyauto.js"></script> 98 <script src="js/file_manager_pyauto.js"></script>
98 <script src="js/file_selection.js"></script> 99 <script src="js/file_selection.js"></script>
99 <script src="js/file_table.js"></script> 100 <script src="js/file_table.js"></script>
100 <script src="js/file_tasks.js"></script> 101 <script src="js/file_tasks.js"></script>
101 <script src="js/file_transfer_controller.js"></script> 102 <script src="js/file_transfer_controller.js"></script>
102 <script src="js/file_type.js"></script> 103 <script src="js/file_type.js"></script>
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 <select id="file-type"></select> 346 <select id="file-type"></select>
346 <button class=ok disabled tabindex="6"></button> 347 <button class=ok disabled tabindex="6"></button>
347 <button class=cancel i18n-content=CANCEL_LABEL tabindex="7"></button> 348 <button class=cancel i18n-content=CANCEL_LABEL tabindex="7"></button>
348 </div> 349 </div>
349 </div> 350 </div>
350 <div id="drag-container"></div> 351 <div id="drag-container"></div>
351 <iframe id="command-dispatcher" hidden></iframe> 352 <iframe id="command-dispatcher" hidden></iframe>
352 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 353 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
353 </body> 354 </body>
354 </html> 355 </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