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

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
« no previous file with comments | « chrome/browser/resources/copresence.css ('k') | chrome/browser/resources/copresence.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html i18n-values="dir:textdirection;">
3
4 <head>
5 <meta charset="utf-8">
6 <title i18n-content="title"></title>
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="chrome://copresence/copresence.css">
9 </head>
10
11 <body>
12 <header>
13 <h1 i18n-content="title"></h1>
14 </header>
15
16 <main>
17 <section>
18 <h2 i18n-content="directives_title"></h2>
19 <table class="directives" id="directives-table">
20 <thead>
21 <tr>
22 <td i18n-content="directive_type">
23 <td i18n-content="token_medium">
24 <td i18n-content="duration">
25 <td class="spacer">
26 <tbody>
27 </table>
28 </section>
29
30 <section>
31 <h2 i18n-content="transmitted_tokens_title"></h2>
32 <table class="tokens" id="transmitted-tokens-table">
33 <thead>
34 <tr>
35 <td i18n-content="token_id">
36 <td i18n-content="token_status">
37 <td i18n-content="token_medium">
38 <td i18n-content="token_transmit_time">
39 <td class="spacer">
40 <tbody>
41 </table>
42 </section>
43
44 <section>
45 <h2 i18n-content="received_tokens_title"></h2>
46 <table class="tokens" id="received-tokens-table">
47 <thead>
48 <tr>
49 <td i18n-content="token_id">
50 <td i18n-content="token_status">
51 <td i18n-content="token_medium">
52 <td i18n-content="token_receive_time">
53 <td class="spacer">
54 <tbody>
55 </table>
56 </section>
57
58 <!-- TODO(ckehoe): Add server calls. -->
59
60 <!-- TODO(ckehoe): Add GCM pings. -->
61
62 </main>
63
64 <script src="chrome://resources/js/load_time_data.js"></script>
65 <script src="chrome://resources/js/util.js"></script>
66 <script src="chrome://copresence/copresence.js"></script>
67 <script src="chrome://copresence/strings.js"></script>
68 <script src="chrome://resources/js/i18n_template2.js"></script>
69 </body>
70
71 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/copresence.css ('k') | chrome/browser/resources/copresence.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698