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

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

Issue 10804010: HiDPI assets for Chrome OS Files app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed ID ranges to accommodate new resources Created 8 years, 5 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 <!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
11 -- path. Until then, use an invisible non-whitespace character. 11 -- path. Until then, use an invisible non-whitespace character.
12 --> 12 -->
13 <title>&#xFEFF;</title> 13 <title>&#xFEFF;</title>
14 <link rel="stylesheet" href="../shared/css/dialogs.css"></link> 14 <link rel="stylesheet" href="../shared/css/dialogs.css"></link>
15 <link rel="stylesheet" href="../shared/css/list.css"></link> 15 <link rel="stylesheet" href="../shared/css/list.css"></link>
16 <link rel="stylesheet" href="../shared/css/table.css"></link> 16 <link rel="stylesheet" href="../shared/css/table.css"></link>
17 <link rel="stylesheet" href="../shared/css/menu.css"></link> 17 <link rel="stylesheet" href="../shared/css/menu.css"></link>
18 18
19 <link rel="stylesheet" href="css/combobutton.css"></link> 19 <link rel="stylesheet" href="css/combobutton.css"></link>
20 <link rel="stylesheet" href="css/file_manager.css"></link> 20 <link rel="stylesheet" href="css/file_manager.css"></link>
21 <link rel="stylesheet" href="css/file_types.css"></link>
21 <link rel="stylesheet" href="css/common.css"></link> 22 <link rel="stylesheet" href="css/common.css"></link>
22 23
23 <script src="js/main_scripts.js"></script> 24 <script src="js/main_scripts.js"></script>
24 25
25 <if expr="0"> 26 <if expr="0">
26 <!-- This file has not been flattened, load individual scripts. 27 <!-- This file has not been flattened, load individual scripts.
27 Keep the list in sync with js/main_scripts.js. --> 28 Keep the list in sync with js/main_scripts.js. -->
28 29
29 <!-- metrics.js initiates load performance tracking 30 <!-- metrics.js initiates load performance tracking
30 so we want to parse it as early as possible --> 31 so we want to parse it as early as possible -->
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 <div class=sidebar-splitter></div> 158 <div class=sidebar-splitter></div>
158 <div class=dialog-main> 159 <div class=dialog-main>
159 <div class=dialog-header> 160 <div class=dialog-header>
160 <div class=breadcrumbs></div> 161 <div class=breadcrumbs></div>
161 <input id="search-box" type="search" tabindex="4" 162 <input id="search-box" type="search" tabindex="4"
162 i18n-values="aria-label:SEARCH_TEXT_LABEL"> 163 i18n-values="aria-label:SEARCH_TEXT_LABEL">
163 164
164 <div class="right buttonbar"> 165 <div class="right buttonbar">
165 <div> 166 <div>
166 <button class="left small" id="detail-view" tabindex="5" 167 <button class="left small" id="detail-view" tabindex="5"
167 i18n-values="aria-label:DETAIL_VIEW_TOOLTIP"> 168 i18n-values="aria-label:DETAIL_VIEW_TOOLTIP">
168 <img src="images/view_list_black_12x12.png">
169 </button> 169 </button>
170 <div class="tooltip" i18n-content=DETAIL_VIEW_TOOLTIP 170 <div class="tooltip" i18n-content=DETAIL_VIEW_TOOLTIP
171 >[DETAIL VIEW]</div> 171 >[DETAIL VIEW]</div>
172 </div> 172 </div>
173 <div> 173 <div>
174 <button class="right small" id="thumbnail-view" tabindex="6" 174 <button class="right small" id="thumbnail-view" tabindex="6"
175 i18n-values="aria-label:THUMBNAIL_VIEW_TOOLTIP"> 175 i18n-values="aria-label:THUMBNAIL_VIEW_TOOLTIP">
176 <img src="images/view_thumbs_black_12x12.png">
177 </button> 176 </button>
178 <div class="tooltip" i18n-content=THUMBNAIL_VIEW_TOOLTIP 177 <div class="tooltip" i18n-content=THUMBNAIL_VIEW_TOOLTIP
179 >[THUMBNAIL VIEW]</div> 178 >[THUMBNAIL VIEW]</div>
180 </div> 179 </div>
181 <button class="menubutton" id="gdata-settings" tabindex="7" 180 <button class="menubutton" id="gdata-settings" tabindex="7"
182 menu="#docs-settings" visibleif="full-page"> 181 menu="#docs-settings" visibleif="full-page">
183 <img src="images/settings.svg">
184 <span class="disclosureindicator"></span> 182 <span class="disclosureindicator"></span>
185 </button> 183 </button>
186 </div> 184 </div>
187 185
188 </div> 186 </div>
189 <div class="gdrive-welcome header"></div> 187 <div class="gdrive-welcome header"></div>
190 <div class=dialog-body> 188 <div class=dialog-body>
191 <div class=filelist-panel> 189 <div class=filelist-panel>
192 <div id="list-container"> 190 <div id="list-container">
193 <div class=detail-table tabindex=0></div> 191 <div class=detail-table tabindex=0></div>
194 <grid class=thumbnail-grid tabindex=0></grid> 192 <grid class=thumbnail-grid tabindex=0></grid>
195 <div class=spinner></div> 193 <div class=spinner></div>
196 <div class="gdrive-welcome page"></div> 194 <div class="gdrive-welcome page"></div>
197 <div id="no-search-results"></div> 195 <div id="no-search-results"></div>
198 </div> 196 </div>
199 <div class=downloads-warning hidden> 197 <div class=downloads-warning hidden></div>
200 <img src=images/warning_icon_square_26x26.png>
201 <div></div>
202 </div>
203 </div> 198 </div>
204 <div class=preview-panel visibility=hidden> 199 <div class=preview-panel visibility=hidden>
205 <div> 200 <div>
206 <div class=preview-thumbnails></div> 201 <div class=preview-thumbnails></div>
207 </div> 202 </div>
208 <div class=preview-summary></div> 203 <div class=preview-summary></div>
209 <div class="right buttonbar" visibleif="full-page"> 204 <div class="right buttonbar" visibleif="full-page">
210 <button id="tasks" class="combobutton" menu="#tasks-menu"> 205 <button id="tasks" class="combobutton" menu="#tasks-menu">
211 </button> 206 </button>
212 <button id="delete-button" command="#delete" 207 <button id="delete-button" command="#delete"
(...skipping 24 matching lines...) Expand all
237 <div class="progress-bar hide-in-butter"> 232 <div class="progress-bar hide-in-butter">
238 <div class="progress-track"></div> 233 <div class="progress-track"></div>
239 </div> 234 </div>
240 </div> 235 </div>
241 <div class="actions hide-in-butter"></div> 236 <div class="actions hide-in-butter"></div>
242 </div> 237 </div>
243 <div id="drag-image-container"></div> 238 <div id="drag-image-container"></div>
244 <iframe id="command-dispatcher" hidden></iframe> 239 <iframe id="command-dispatcher" hidden></iframe>
245 </body> 240 </body>
246 </html> 241 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698