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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 1609683002: MD History: Rewrite i18n system using ReplaceTemplateExpressions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md_history_2
Patch Set: Rebased Created 4 years, 10 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf8"> 4 <meta charset="utf8">
5 <title i18n-content="title"></title> 5 <title>$i18n{title}</title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 7 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
9 9
10 <style> 10 <style>
11 html, 11 html,
12 body { 12 body {
13 height: 100%; 13 height: 100%;
14 margin: 0; 14 margin: 0;
15 } 15 }
(...skipping 22 matching lines...) Expand all
38 <history-card-manager id="history-card-manager"></history-card-manager> 38 <history-card-manager id="history-card-manager"></history-card-manager>
39 39
40 <link rel="import" href="chrome://resources/html/polymer_config.html"> 40 <link rel="import" href="chrome://resources/html/polymer_config.html">
41 <link rel="import" href="chrome://resources/html/cr.html"> 41 <link rel="import" href="chrome://resources/html/cr.html">
42 <link rel="import" href="chrome://resources/html/util.html"> 42 <link rel="import" href="chrome://resources/html/util.html">
43 <link rel="import" href="chrome://history/history_card_manager.html"> 43 <link rel="import" href="chrome://history/history_card_manager.html">
44 <link rel="import" href="chrome://history/history_toolbar.html"> 44 <link rel="import" href="chrome://history/history_toolbar.html">
45 45
46 <script src="history.js"></script> 46 <script src="history.js"></script>
47 47
48 <!-- Prepare strings and perform i18n substitutions. --> 48 <!-- Prepare load time strings. -->
49 <link rel="import" href="chrome://resources/html/load_time_data.html"> 49 <link rel="import" href="chrome://resources/html/load_time_data.html">
50 <script src="strings.js"></script> 50 <script src="strings.js"></script>
51 <link rel="import" href="chrome://resources/html/i18n_template.html">
52 </body> 51 </body>
53 52
54 </html> 53 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_card_manager.html » ('j') | chrome/browser/ui/webui/md_history_ui.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698