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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/copresence.html
diff --git a/chrome/browser/resources/copresence.html b/chrome/browser/resources/copresence.html
new file mode 100644
index 0000000000000000000000000000000000000000..162f58ea966f7de02f16cde513cc2e67d61015b2
--- /dev/null
+++ b/chrome/browser/resources/copresence.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML>
+
+<html>
+
+<head>
+ <meta charset="utf-8">
+ <title i18n-content="title"></title>
+ <link rel="stylesheet" href="chrome://copresence/copresence.css">
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://copresence/copresence.js"></script>
+ <script src="chrome://copresence/strings.js"></script>
+
xiyuan 2014/12/05 18:56:55 </head>
Charlie 2014/12/05 21:26:08 The Google HTML/CSS style guide recommends omittin
+<body>
+ <header>
+ <h1 i18n-content="title"></h1>
+ </header>
+
+ <main>
+ <section>
+ <h2 i18n-content="directives_title"></h2>
+ <table id="directives-table">
+ <thead>
+ <tr>
+ <td i18n-content="directive_type">
+ <td i18n-content="token_medium">
+ <td i18n-content="duration">
xiyuan 2014/12/05 18:56:55 </tr>
+ <tbody>
xiyuan 2014/12/05 18:56:55 </tdoby>
+ </table>
+ </section>
+
+ <section>
+ <h2 i18n-content="sent_tokens_title"></h2>
+ <table id="sent-tokens-table">
+ <thead>
+ <tr>
+ <td i18n-content="token_id">
+ <td i18n-content="token_status">
+ <td i18n-content="token_medium">
+ <td i18n-content="token_send_time">
xiyuan 2014/12/05 18:56:55 </tr>
+ <tbody>
xiyuan 2014/12/05 18:56:55 </tbody>
+ </table>
+ </section>
+
+ <section>
+ <h2 i18n-content="received_tokens_title"></h2>
+ <table id="received-tokens-table">
+ <thead>
+ <tr>
+ <td i18n-content="token_id">
+ <td i18n-content="token_status">
+ <td i18n-content="token_medium">
+ <td i18n-content="token_receive_time">
xiyuan 2014/12/05 18:56:55 </tr>
+ <tbody>
xiyuan 2014/12/05 18:56:55 </tbody>
+ </table>
+ </section>
+
+ <!-- TODO(ckehoe): Add server calls -->
+
+ <!-- TODO(ckehoe): Add GCM pings -->
+
+ </main>
+
+ <script src="chrome://resources/js/i18n_template2.js"></script>
xiyuan 2014/12/05 18:56:55 </body> </html>

Powered by Google App Engine
This is Rietveld 408576698