| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <meta charset="utf-8" /> | 10 <meta charset="utf-8" /> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 <div id="access-code-countdown-container"> | 117 <div id="access-code-countdown-container"> |
| 118 <div id="access-code-countdown" class="expiring" hidden> | 118 <div id="access-code-countdown" class="expiring" hidden> |
| 119 <span i18n-content="accessCodeTimer"></span> | 119 <span i18n-content="accessCodeTimer"></span> |
| 120 0:<span id="seconds-remaining"></span> | 120 0:<span id="seconds-remaining"></span> |
| 121 </div> | 121 </div> |
| 122 </div> | 122 </div> |
| 123 <div class="description" i18n-content="instructionsShareBelow"></div> | 123 <div class="description" i18n-content="instructionsShareBelow"></div> |
| 124 </div> <!-- host.waiting-for-connection --> | 124 </div> <!-- host.waiting-for-connection --> |
| 125 | 125 |
| 126 <div data-ui-mode="host.shared"> | 126 <div data-ui-mode="host.shared"> |
| 127 <div class="message" i18n-content="messageShared"></div> | 127 <div id="host-shared-message" class="message" |
| 128 i18n-content="messageShared"></div> |
| 128 <div class="centered-button"> | 129 <div class="centered-button"> |
| 129 <button type="button" class="big-button" | 130 <button type="button" class="big-button" |
| 130 onclick="remoting.cancelShare();" | 131 onclick="remoting.cancelShare();" |
| 131 i18n-content="stopSharingButton"> | 132 i18n-content="stopSharingButton"> |
| 132 </button> | 133 </button> |
| 133 </div> | 134 </div> |
| 134 </div> <!-- host.shared --> | 135 </div> <!-- host.shared --> |
| 135 | 136 |
| 136 <div data-ui-mode="host.share-failed" class="message"> | 137 <div data-ui-mode="host.share-failed" class="message"> |
| 137 <span id="unable-to-get-token" class="error-state" | 138 <span id="unable-to-get-token" class="error-state" |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 230 |
| 230 <section id="debug-log" hidden> | 231 <section id="debug-log" hidden> |
| 231 <div id="statistics"> | 232 <div id="statistics"> |
| 232 </div> | 233 </div> |
| 233 <div id="debug-messages"> | 234 <div id="debug-messages"> |
| 234 </div> | 235 </div> |
| 235 </section> <!-- debug-log --> | 236 </section> <!-- debug-log --> |
| 236 | 237 |
| 237 </body> | 238 </body> |
| 238 </html> | 239 </html> |
| OLD | NEW |