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

Side by Side Diff: chrome/browser/resources/engagement/engagement_table.html

Issue 1316043003: Add chrome://site-engagement WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation_smarter
Patch Set: fix dependencies Created 5 years, 3 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
(Empty)
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2
3 <dom-module id="engagement-table">
4 <link rel="import" type="css" href="engagement_table.css">
5 <template>
6 <table>
7 <thead>
8 <tr>
9 <th>Origin</th>
10 <th>Points</th>
11 </tr>
12 </thead>
13 <tbody>
14 <template is="dom-repeat" items="{{engagementInfo}}" as="info">
15 <tr>
16 <td class="origin-cell">{{info.origin}}</td>
17 <td>{{info.score}}</td>
18 </tr>
19 </template>
20 </tbody>
21 </table>
22 </template>
23 </dom-module>
24 <script src="engagement_table.js"></script>
OLDNEW
« no previous file with comments | « chrome/browser/resources/engagement/engagement_table.css ('k') | chrome/browser/resources/engagement/engagement_table.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698