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

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

Issue 472933004: Change bookmark manager header to look more like settings/extensions/history. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: shave Created 6 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/bookmark_manager/js/main.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 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <!-- 3 <!--
4 4
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 <script src="chrome://resources/js/load_time_data.js"></script> 48 <script src="chrome://resources/js/load_time_data.js"></script>
49 <script src="chrome://resources/js/util.js"></script> 49 <script src="chrome://resources/js/util.js"></script>
50 50
51 <script src="js/bmm.js"></script> 51 <script src="js/bmm.js"></script>
52 <script src="js/bmm/bookmark_list.js"></script> 52 <script src="js/bmm/bookmark_list.js"></script>
53 <script src="js/bmm/bookmark_tree.js"></script> 53 <script src="js/bmm/bookmark_tree.js"></script>
54 <script src="js/dnd.js"></script> 54 <script src="js/dnd.js"></script>
55 </head> 55 </head>
56 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 56 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
57 57
58 <div class="header"> 58 <header>
59 <button class="logo link-button" tabindex=3></button> 59 <h2 i18n-content="title"></h2>
60 <form class="form"> 60 <form>
61 <input type="search" id="term" tabindex=1 autofocus incremental 61 <input type="search" id="term" tabindex=1 autofocus incremental
62 i18n-values="placeholder:search_button"> 62 i18n-values="placeholder:search_button">
63 </form> 63 </form>
64 </div> 64 </header>
65 65
66 <div class="summary"> 66 <div class="summary">
67 <h3 i18n-content="title"></h3>
68 <button menu="#organize-menu" tabindex="4" i18n-content="organize_menu"> 67 <button menu="#organize-menu" tabindex="4" i18n-content="organize_menu">
69 </button> 68 </button>
70 </div> 69 </div>
71 70
72 <div class=main> 71 <div class=main>
73 <div id=tree-container> 72 <div id=tree-container>
74 <tree id=tree tabindex=2 role="tree"></tree> 73 <tree id=tree tabindex=2 role="tree"></tree>
75 </div> 74 </div>
76 <div class=splitter></div> 75 <div class=splitter></div>
77 <list id=list tabindex=2></list> 76 <list id=list tabindex=2></list>
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 <button command="#delete-command"></button> 147 <button command="#delete-command"></button>
149 <button command="#undo-delete-command"></button> 148 <button command="#undo-delete-command"></button>
150 <hr> 149 <hr>
151 <button command="#add-new-bookmark-command"></button> 150 <button command="#add-new-bookmark-command"></button>
152 <button command="#new-folder-command"></button> 151 <button command="#new-folder-command"></button>
153 </menu> 152 </menu>
154 153
155 <script src="js/main.js"></script> 154 <script src="js/main.js"></script>
156 </body> 155 </body>
157 </html> 156 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/bookmark_manager/js/main.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698