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

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

Issue 9967017: Upstream Android native crash handling changes. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: sync again Created 8 years, 8 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_shared2.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.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://uber-frame/uber_frame.js"></script> 10 <script src="chrome://uber-frame/uber_frame.js"></script>
11 </head> 11 </head>
12 12
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
14 14
15 <h1 i18n-content="shortProductName"></h1> 15 <h1 i18n-content="shortProductName"></h1>
16 <ul> 16 <ul>
17 <li i18n-content="historyDisplayName" 17 <li i18n-content="historyDisplayName"
18 i18n-values="controls:historyHost"> 18 i18n-values="controls:historyHost;override:overridesHistory">
Mark Mentovai 2012/04/09 22:55:58 Does this belong?
19 </li> 19 </li>
20 <li i18n-content="extensionsDisplayName" 20 <li i18n-content="extensionsDisplayName"
21 i18n-values="controls:extensionsHost"> 21 i18n-values="controls:extensionsHost">
22 </li> 22 </li>
23 <li i18n-content="settingsDisplayName" 23 <li i18n-content="settingsDisplayName"
24 i18n-values="controls:settingsHost"> 24 i18n-values="controls:settingsHost">
25 </li> 25 </li>
26 <li id="helpNavItem" i18n-content="helpDisplayName" 26 <li id="helpNavItem" i18n-content="helpDisplayName"
27 i18n-values="controls:helpHost"> 27 i18n-values="controls:helpHost">
28 </li> 28 </li>
29 </ul> 29 </ul>
30 30
31 <script src="chrome://uber-frame/strings.js"></script> 31 <script src="chrome://uber-frame/strings.js"></script>
32 <script src="chrome://resources/js/i18n_template.js"></script> 32 <script src="chrome://resources/js/i18n_template.js"></script>
33 <script src="chrome://resources/js/i18n_process.js"></script> 33 <script src="chrome://resources/js/i18n_process.js"></script>
34 34
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698