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

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

Issue 23532018: Files.app: Extract the TextMeasure class to a new file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed the comment. 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/text_measure.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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 <script src="js/file_tasks.js"></script> 105 <script src="js/file_tasks.js"></script>
106 <script src="js/file_transfer_controller.js"></script> 106 <script src="js/file_transfer_controller.js"></script>
107 <script src="js/file_type.js"></script> 107 <script src="js/file_type.js"></script>
108 <script src="js/file_watcher.js"></script> 108 <script src="js/file_watcher.js"></script>
109 <script src="js/folder_shortcuts_data_model.js"></script> 109 <script src="js/folder_shortcuts_data_model.js"></script>
110 <script src="js/navigation_list.js"></script> 110 <script src="js/navigation_list.js"></script>
111 <script src="js/scrollbar.js"></script> 111 <script src="js/scrollbar.js"></script>
112 <script src="js/share_client.js"></script> 112 <script src="js/share_client.js"></script>
113 <script src="js/share_dialog.js"></script> 113 <script src="js/share_dialog.js"></script>
114 <script src="js/suggest_apps_dialog.js"></script> 114 <script src="js/suggest_apps_dialog.js"></script>
115 <script src="js/text_measure.js"></script>
115 <script src="js/tree.css.js"></script> 116 <script src="js/tree.css.js"></script>
116 <script src="js/volume_manager.js"></script> 117 <script src="js/volume_manager.js"></script>
117 <script src="js/media/media_util.js"></script> 118 <script src="js/media/media_util.js"></script>
118 <script src="js/metadata/metadata_cache.js"></script> 119 <script src="js/metadata/metadata_cache.js"></script>
119 <script src="js/default_action_dialog.js"></script> 120 <script src="js/default_action_dialog.js"></script>
120 <script src="js/file_manager_commands.js"></script> 121 <script src="js/file_manager_commands.js"></script>
121 122
122 <!-- For accurate load performance tracking main.js should be 123 <!-- For accurate load performance tracking main.js should be
123 the last script to include. --> 124 the last script to include. -->
124 <script src="js/main.js"></script> 125 <script src="js/main.js"></script>
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 <select class="file-type"></select> 406 <select class="file-type"></select>
406 <button class=ok disabled tabindex="7"></button> 407 <button class=ok disabled tabindex="7"></button>
407 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button> 408 <button class=cancel i18n-content=CANCEL_LABEL tabindex="8"></button>
408 </div> 409 </div>
409 </div> 410 </div>
410 <div id="drag-container"></div> 411 <div id="drag-container"></div>
411 <iframe id="command-dispatcher" hidden></iframe> 412 <iframe id="command-dispatcher" hidden></iframe>
412 <div class="overlay-pane" id="iframe-drag-area" hidden></div> 413 <div class="overlay-pane" id="iframe-drag-area" hidden></div>
413 </body> 414 </body>
414 </html> 415 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/text_measure.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698