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

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

Issue 7529036: Add warning message to downloads directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing image Created 9 years, 4 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/util.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> 7 <html>
8 <head> 8 <head>
9 <script> 9 <script>
10 // Resources from shared locations are loaded dynamically, so we can 10 // Resources from shared locations are loaded dynamically, so we can
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 <menuitem i18n-content=PASTE_BUTTON_LABEL command='#paste'></menuitem> 103 <menuitem i18n-content=PASTE_BUTTON_LABEL command='#paste'></menuitem>
104 <hr> 104 <hr>
105 <menuitem i18n-content=RENAME_BUTTON_LABEL command='#rename'></menuitem> 105 <menuitem i18n-content=RENAME_BUTTON_LABEL command='#rename'></menuitem>
106 <menuitem i18n-content=DELETE_BUTTON_LABEL command='#delete'></menuitem> 106 <menuitem i18n-content=DELETE_BUTTON_LABEL command='#delete'></menuitem>
107 </menu> 107 </menu>
108 108
109 <div class=dialog-title visibleif='this.dialogType_ != "full-page"' 109 <div class=dialog-title visibleif='this.dialogType_ != "full-page"'
110 >[TITLE]</div> 110 >[TITLE]</div>
111 <div class=dialog-header> 111 <div class=dialog-header>
112 <div class=breadcrumbs></div> 112 <div class=breadcrumbs></div>
113 <!-- TODO(rginda): Add icons instead of unicode glyphs -->
114 <button class=detail-view tabindex=4 113 <button class=detail-view tabindex=4
115 ><img src='images/icon-detail-view.png'></button 114 ><img src='images/icon-detail-view.png'></button
116 ><button class=thumbnail-view tabindex=5 115 ><button class=thumbnail-view tabindex=5
117 ><img src='images/icon-thumb-view.png'></button> 116 ><img src='images/icon-thumb-view.png'></button>
118 <button i18n-content=NEW_FOLDER_BUTTON_LABEL class='new-folder' 117 <button i18n-content=NEW_FOLDER_BUTTON_LABEL class='new-folder'
119 tabindex=6 118 tabindex=6
120 visibleif='this.dialogType_ == "saveas-file" || 119 visibleif='this.dialogType_ == "saveas-file" ||
121 this.dialogType_ == "full-page"' 120 this.dialogType_ == "full-page"'
122 ></button> 121 ></button>
123 </div> 122 </div>
124 <div class=dialog-body> 123 <div class=dialog-body>
125 <div class=list-container> 124 <div class=left-column>
126 <div class=detail-table tabindex=0></div> 125 <div class=list-container>
127 <grid class=thumbnail-grid tabindex=0></grid> 126 <div class=detail-table tabindex=0></div>
127 <grid class=thumbnail-grid tabindex=0></grid>
128 </div>
129 <div class=downloads-warning>
130 <img src=images/warning_icon_square_26x26.png>
131 <div></div>
132 </div>
128 </div> 133 </div>
129 <div class=preview-container> 134 <div class=preview-container>
130 <div class=table-header style='width:100%'> 135 <div class=table-header style='width:100%'>
131 <div class=table-header-cell> 136 <div class=table-header-cell>
132 <div class='preview-label table-header-label' 137 <div class='preview-label table-header-label'
133 i18n-content=PREVIEW_COLUMN_LABEL>[PREVIEW]</div> 138 i18n-content=PREVIEW_COLUMN_LABEL>[PREVIEW]</div>
134 </div> 139 </div>
135 </div> 140 </div>
136 <div class=preview-filename></div> 141 <div class=preview-filename></div>
137 <center><img class=preview-img></center> 142 <center><img class=preview-img></center>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 visibleif='this.dialogType_ == "saveas-file"'> 174 visibleif='this.dialogType_ == "saveas-file"'>
170 <div class=horizontal-spacer></div> 175 <div class=horizontal-spacer></div>
171 <button class=ok disabled tabindex=2>[OK]</button> 176 <button class=ok disabled tabindex=2>[OK]</button>
172 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 177 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
173 >[CANCEL]</button> 178 >[CANCEL]</button>
174 </div> 179 </div>
175 180
176 <script>init();</script> 181 <script>init();</script>
177 </body> 182 </body>
178 </html> 183 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/util.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698