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

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

Issue 8819013: Add UMA metrics to Photo Editor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years 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/mock_chrome.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) 2011 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2011 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 <if expr="0"> 9 <if expr="0">
10 <!-- <if ... /if> is removed while flattening HTML. --> 10 <!-- <if ... /if> is removed while flattening HTML. -->
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 <script src="js/util.js"></script> 89 <script src="js/util.js"></script>
90 <script src="js/file_copy_manager.js"></script> 90 <script src="js/file_copy_manager.js"></script>
91 <script src="js/file_manager.js"></script> 91 <script src="js/file_manager.js"></script>
92 <script src="js/file_manager_pyauto.js"></script> 92 <script src="js/file_manager_pyauto.js"></script>
93 <script src="js/main.js"></script> 93 <script src="js/main.js"></script>
94 <script src="js/metadata_provider.js"></script> 94 <script src="js/metadata_provider.js"></script>
95 95
96 <!-- For accurate load performance tracking 96 <!-- For accurate load performance tracking
97 place all scripts above this line --> 97 place all scripts above this line -->
98 <script> 98 <script>
99 metrics.recordTime('Load.Script'); 99 metrics.recordInterval('Load.Script');
100 </script> 100 </script>
101 101
102 <!-- We have to set some default title, or chrome will use the page 102 <!-- We have to set some default title, or chrome will use the page
103 -- name. As soon as we init and change to a directory, we'll use 103 -- name. As soon as we init and change to a directory, we'll use
104 -- the directory as the page title. Until then, have a unicode glyph 104 -- the directory as the page title. Until then, have a unicode glyph
105 -- of a tape reel. 105 -- of a tape reel.
106 --> 106 -->
107 <title>&#x2707;</title> 107 <title>&#x2707;</title>
108 </head> 108 </head>
109 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY; 109 <body i18n-values=".style.fontFamily:WEB_FONT_FAMILY;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 visibleif='this.dialogType_ == "saveas-file"'> 174 visibleif='this.dialogType_ == "saveas-file"'>
175 <div class=horizontal-spacer></div> 175 <div class=horizontal-spacer></div>
176 <button class=ok disabled tabindex=2>[OK]</button> 176 <button class=ok disabled tabindex=2>[OK]</button>
177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
178 >[CANCEL]</button> 178 >[CANCEL]</button>
179 </div> 179 </div>
180 180
181 <script>init();</script> 181 <script>init();</script>
182 </body> 182 </body>
183 </html> 183 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698