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

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 <html>
4
5 <head>
6 <meta charset="utf-8">
7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="chrome://copresence/copresence.css">
9 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script>
11 <script src="chrome://copresence/copresence.js"></script>
12 <script src="chrome://copresence/strings.js"></script>
13
xiyuan 2014/12/05 18:56:55 </head>
Charlie 2014/12/05 21:26:08 The Google HTML/CSS style guide recommends omittin
14 <body>
15 <header>
16 <h1 i18n-content="title"></h1>
17 </header>
18
19 <main>
20 <section>
21 <h2 i18n-content="directives_title"></h2>
22 <table id="directives-table">
23 <thead>
24 <tr>
25 <td i18n-content="directive_type">
26 <td i18n-content="token_medium">
27 <td i18n-content="duration">
xiyuan 2014/12/05 18:56:55 </tr>
28 <tbody>
xiyuan 2014/12/05 18:56:55 </tdoby>
29 </table>
30 </section>
31
32 <section>
33 <h2 i18n-content="sent_tokens_title"></h2>
34 <table id="sent-tokens-table">
35 <thead>
36 <tr>
37 <td i18n-content="token_id">
38 <td i18n-content="token_status">
39 <td i18n-content="token_medium">
40 <td i18n-content="token_send_time">
xiyuan 2014/12/05 18:56:55 </tr>
41 <tbody>
xiyuan 2014/12/05 18:56:55 </tbody>
42 </table>
43 </section>
44
45 <section>
46 <h2 i18n-content="received_tokens_title"></h2>
47 <table id="received-tokens-table">
48 <thead>
49 <tr>
50 <td i18n-content="token_id">
51 <td i18n-content="token_status">
52 <td i18n-content="token_medium">
53 <td i18n-content="token_receive_time">
xiyuan 2014/12/05 18:56:55 </tr>
54 <tbody>
xiyuan 2014/12/05 18:56:55 </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/i18n_template2.js"></script>
xiyuan 2014/12/05 18:56:55 </body> </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698