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

Side by Side Diff: chrome/browser/resources/uber/uber_frame.html

Issue 313363004: Separate Settings and Help from History and Extensions when settings-in- (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: feedback Created 6 years, 6 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 <html i18n-values="dir:textdirection;" id="uber"> 2 <html i18n-values="dir:textdirection;" id="uber">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 5
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <link rel="stylesheet" href="uber_frame.css"> 7 <link rel="stylesheet" href="uber_frame.css">
8 8
9 <script src="chrome://resources/js/cr.js"></script> 9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script> 10 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script>
11 <script src="chrome://resources/js/load_time_data.js"></script> 11 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://uber-frame/uber_frame.js"></script> 12 <script src="chrome://uber-frame/uber_frame.js"></script>
13 </head> 13 </head>
14 14
15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 16
17 <h1 i18n-content="shortProductName"></h1> 17 <h1 i18n-content="shortProductName"></h1>
18 <ul> 18 <ul>
19 <li i18n-values="controls:historyHost;override:overridesHistory"> 19 <li i18n-values="controls:historyHost;override:overridesHistory;
20 group:historyGroup" hidden="hidden">
Dan Beam 2014/06/06 21:21:23 s/="hidden"//g
michaelpg 2014/06/07 02:12:15 Done.
20 <button class="custom-appearance" 21 <button class="custom-appearance"
21 i18n-content="historyDisplayName"></button> 22 i18n-content="historyDisplayName"></button>
22 </li> 23 </li>
23 <li i18n-values="controls:extensionsHost"> 24 <li i18n-values="controls:extensionsHost;group:extensionsGroup"
25 hidden="hidden">
24 <button class="custom-appearance" 26 <button class="custom-appearance"
25 i18n-content="extensionsDisplayName"></button> 27 i18n-content="extensionsDisplayName"></button>
26 </li> 28 </li>
27 <li i18n-values="controls:settingsHost"> 29 <li i18n-values="controls:settingsHost;group:settingsGroup" hidden="hidden">
28 <button class="custom-appearance" 30 <button class="custom-appearance"
29 i18n-content="settingsDisplayName"></button> 31 i18n-content="settingsDisplayName"></button>
30 </li> 32 </li>
31 <li id="helpNavItem" i18n-values="controls:helpHost"> 33 <li id="helpNavItem" i18n-values="controls:helpHost;group:helpGroup"
34 hidden="hidden">
32 <button class="custom-appearance" 35 <button class="custom-appearance"
33 i18n-content="helpDisplayName"></button> 36 i18n-content="helpDisplayName"></button>
34 </li> 37 </li>
35 </ul> 38 </ul>
36 39
37 <script src="chrome://uber-frame/strings.js"></script> 40 <script src="chrome://uber-frame/strings.js"></script>
38 <script src="chrome://resources/js/i18n_template2.js"></script> 41 <script src="chrome://resources/js/i18n_template2.js"></script>
39 42
40 </body> 43 </body>
41 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698