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

Side by Side Diff: chrome/browser/resources/copresence.html

Issue 734243003: Adding the chrome://copresence page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@state
Patch Set: Created 6 years 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
3 <meta charset="utf-8">
4 <title i18n-content="title"></title>
5 <link rel="stylesheet" href="chrome://copresence/copresence.css">
6 <script src="chrome://resources/js/load_time_data.js"></script>
7 <script src="chrome://resources/js/util.js"></script>
8 <script src="chrome://copresence/copresence.js"></script>
9 <script src="chrome://copresence/strings.js"></script>
10
11 <header>
12 <h1 i18n-content="title"></h1>
13 </header>
14
15 <main>
16 <section>
17 <h2 i18n-content="directives_title"></h2>
18 <table id="directives-table">
19 <thead>
20 <tr>
21 <td i18n-content="directive_type">
22 <td i18n-content="token_medium">
23 <td i18n-content="duration">
24 <tbody>
25 </table>
26 </section>
27
28 <section>
29 <h2 i18n-content="sent_tokens_title"></h2>
30 <table id="sent-tokens-table">
31 <thead>
32 <tr>
33 <td i18n-content="token_id">
34 <td i18n-content="token_status">
35 <td i18n-content="token_medium">
36 <td i18n-content="token_send_time">
37 <tbody>
38 </table>
39 </section>
40
41 <section>
42 <h2 i18n-content="received_tokens_title"></h2>
43 <table id="received-tokens-table">
44 <thead>
45 <tr>
46 <td i18n-content="token_id">
47 <td i18n-content="token_status">
48 <td i18n-content="token_medium">
49 <td i18n-content="token_receive_time">
50 <tbody>
51 </table>
52 </section>
53
54 <!-- TODO(ckehoe): Add server calls -->
55
56 <!-- TODO(ckehoe): Add GCM pings -->
57
58 </main>
59
60 <script src="chrome://resources/js/i18n_template2.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698