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

Side by Side Diff: chrome/browser/resources/md_history/synced_device_card.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: Rewrite with simpler new system Created 4 years, 9 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
« no previous file with comments | « chrome/browser/resources/md_history/side_bar.html ('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 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
7 <link rel="import" href="chrome://resources/html/util.html"> 7 <link rel="import" href="chrome://resources/html/util.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://history/shared_style.html">
9 9
10 <dom-module id="history-synced-device-card"> 10 <dom-module id="history-synced-device-card">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 <div id="icon" class="website-icon"></div> 92 <div id="icon" class="website-icon"></div>
93 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]"> 93 <a href="[[tab.url]]" class="website-title" title="[[tab.title]]">
94 [[tab.title]] 94 [[tab.title]]
95 </a> 95 </a>
96 </div> 96 </div>
97 <template is="dom-if" if="[[tab.needsWindowSeparator]]"> 97 <template is="dom-if" if="[[tab.needsWindowSeparator]]">
98 <div id="window-separator"></div> 98 <div id="window-separator"></div>
99 </template> 99 </template>
100 </template> 100 </template>
101 <div class="item-container"> 101 <div class="item-container">
102 <p on-tap="openAllTabs_" id="open-tabs" i18n-content="openAll"></p> 102 <p on-tap="openAllTabs_" id="open-tabs">$i18n{openAll}</p>
103 </div> 103 </div>
104 </div> 104 </div>
105 </iron-collapse> 105 </iron-collapse>
106 </div> 106 </div>
107 </template> 107 </template>
108 <script src="chrome://history/synced_device_card.js"></script> 108 <script src="chrome://history/synced_device_card.js"></script>
109 </dom-module> 109 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/side_bar.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698