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

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

Issue 1316043003: Add chrome://site-engagement WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation_smarter
Patch Set: fix build more 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 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language">
3 <head>
4 <title>Site Engagement</title>
5 <meta charset="utf-8">
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
7 <link rel="stylesheet" href="chrome://site-engagement/site_engagement.css">
8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://site-engagement/site_engagement.js"></script>
11 <base id="base">
12 </head>
13
14 <body>
15 <h1>Site Engagement</h1>
16 <div>
17 <table id="engagement-table">
18 <thead>
19 <tr>
20 <th>Origin</th>
21 <th>Points</th>
22 </tr>
23 </thead>
24 <tbody>
25 </tbody>
26 </table>
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698