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

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

Issue 9006027: Rip Out the Sidebar API (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' 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
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 <hr visibleif='this.dialogType_ == "saveas-file" || 127 <hr visibleif='this.dialogType_ == "saveas-file" ||
128 this.dialogType_ == "full-page"'> 128 this.dialogType_ == "full-page"'>
129 <menuitem command='#newfolder' 129 <menuitem command='#newfolder'
130 visibleif='this.dialogType_ == "saveas-file" || 130 visibleif='this.dialogType_ == "saveas-file" ||
131 this.dialogType_ == "full-page"'></menuitem> 131 this.dialogType_ == "full-page"'></menuitem>
132 </menu> 132 </menu>
133 133
134 <div class=dialog-title visibleif='this.dialogType_ != "full-page"' 134 <div class=dialog-title visibleif='this.dialogType_ != "full-page"'
135 >[TITLE]</div> 135 >[TITLE]</div>
136 <div class=dialog-container> 136 <div class=dialog-container>
137 <div class=dialog-sidebar>
138 <div class=close-sidebar><img src='images/close_sidebar.png'></div>
139 <list class=roots-list></list>
140 </div>
141 <div class=dialog-main> 137 <div class=dialog-main>
142 <div class=dialog-header> 138 <div class=dialog-header>
143 <div class=open-sidebar><img src='images/open_sidebar.png'></div>
144 <div class=breadcrumbs></div> 139 <div class=breadcrumbs></div>
145 <button class=detail-view tabindex=4 140 <button class=detail-view tabindex=4
146 ><img src='images/icon-detail-view.png'></button 141 ><img src='images/icon-detail-view.png'></button
147 ><button class=thumbnail-view tabindex=5 142 ><button class=thumbnail-view tabindex=5
148 ><img src='images/icon-thumb-view.png'></button> 143 ><img src='images/icon-thumb-view.png'></button>
149 </div> 144 </div>
150 <div class=dialog-body> 145 <div class=dialog-body>
151 <div class=filelist-panel> 146 <div class=filelist-panel>
152 <div class=list-container> 147 <div class=list-container>
153 <div class=detail-table tabindex=0></div> 148 <div class=detail-table tabindex=0></div>
(...skipping 30 matching lines...) Expand all
184 visibleif='this.dialogType_ == "saveas-file"'> 179 visibleif='this.dialogType_ == "saveas-file"'>
185 <div class=horizontal-spacer></div> 180 <div class=horizontal-spacer></div>
186 <button class=ok disabled tabindex=2>[OK]</button> 181 <button class=ok disabled tabindex=2>[OK]</button>
187 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 182 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL
188 >[CANCEL]</button> 183 >[CANCEL]</button>
189 </div> 184 </div>
190 185
191 <script>init();</script> 186 <script>init();</script>
192 </body> 187 </body>
193 </html> 188 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698