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

Unified Diff: chrome/browser/resources/local_discovery/local_discovery.html

Issue 20070002: Demo UI for device discovery and registration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/local_discovery/local_discovery.html
diff --git a/chrome/browser/resources/local_discovery/local_discovery.html b/chrome/browser/resources/local_discovery/local_discovery.html
index dc1e8df8a6b847011ae205b4d534a48953c34d3e..29229ed6acdf08364d0cad2b0db6ef5a5a226171 100644
--- a/chrome/browser/resources/local_discovery/local_discovery.html
+++ b/chrome/browser/resources/local_discovery/local_discovery.html
@@ -6,24 +6,26 @@
<link rel="stylesheet" href="local_discovery.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://resources/js/load_time_data.js"></script>
<script src="local_discovery.js"></script>
+ <script src="strings.js"></script>
</head>
<body>
- <p>
- Searching for discoverable devices...
- </p>
<div>
+ <div id="info-console"></div>
<table id="devices-table" width="100%">
<thead>
- <th>Name</th>
- <th>Domain</th>
- <th>Port</th>
- <th>IP</th>
- <th>Metadata</th>
- <th>Last seen</th>
- <th>Registered</th>
+ <th i18n-content="serviceName"></th>
+ <th i18n-content="serviceDomain"></th>
+ <th i18n-content="servicePort"></th>
+ <th i18n-content="serviceIp"></th>
+ <th i18n-content="serviceLastseen"></th>
+ <th i18n-content="serviceRegister"></th>
</thead>
</table>
</div>
+
+ <script src="chrome://resources/js/i18n_template2.js"></script>
+ <script src="chrome://resources/js/jstemplate_compiled.js"></script>
</body>
-</html>
+</html>

Powered by Google App Engine
This is Rietveld 408576698