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" /> |
11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&v1" | 11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&v1" |
12 rel="stylesheet" type="text/css"> | 12 rel="stylesheet" type="text/css"> |
13 <link rel="shortcut icon" href="chromoting128.png" /> | 13 <link rel="shortcut icon" href="chromoting128.png" /> |
14 <link rel="stylesheet" href="debug_log.css" /> | 14 <link rel="stylesheet" href="debug_log.css" /> |
15 <link rel="stylesheet" href="main.css" /> | 15 <link rel="stylesheet" href="main.css" /> |
16 <link rel="stylesheet" href="choice.css" /> | 16 <link rel="stylesheet" href="choice.css" /> |
17 <link rel="stylesheet" href="toolbar.css" /> | 17 <link rel="stylesheet" href="toolbar.css" /> |
18 <script src="client_session.js"></script> | 18 <script src="client_session.js"></script> |
19 <script src="debug_log.js"></script> | 19 <script src="debug_log.js"></script> |
20 <script src="l10n.js"></script> | 20 <script src="l10n.js"></script> |
21 <script src="oauth2.js"></script> | 21 <script src="oauth2.js"></script> |
22 <script src="plugin_settings.js"></script> | 22 <script src="plugin_settings.js"></script> |
23 <script src="remoting.js"></script> | 23 <script src="remoting.js"></script> |
24 <script src="xhr.js"></script> | 24 <script src="xhr.js"></script> |
25 <title i18n-content="pageTitle"></title> | 25 <title i18n-content="productName"></title> |
26 </head> | 26 </head> |
27 | 27 |
28 <body onLoad="remoting.init();" | 28 <body onLoad="remoting.init();" |
29 onUnload="remoting.disconnect();"> | 29 onUnload="remoting.disconnect();"> |
30 | 30 |
31 <!-- loading-mode is initially visible, but becomes hidden as soon as an | 31 <!-- loading-mode is initially visible, but becomes hidden as soon as an |
32 AppMode is selected by remoting.init. All other divs are initially | 32 AppMode is selected by remoting.init. All other divs are initially |
33 hidden, but are shown appropriately when the mode changes. --> | 33 hidden, but are shown appropriately when the mode changes. --> |
34 <!-- TODO(jamiewalch): This string is not localized because by the time we | 34 <!-- TODO(jamiewalch): This string is not localized because by the time we |
35 get around to running localize(), it's hidden anyway. --> | 35 get around to running localize(), it's hidden anyway. --> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 <div class="toolbar-stub"> | 71 <div class="toolbar-stub"> |
72 <img src="toolbar-stub.png"> | 72 <img src="toolbar-stub.png"> |
73 </div> | 73 </div> |
74 </div> <!-- session-toolbar --> | 74 </div> <!-- session-toolbar --> |
75 | 75 |
76 <div id="main" data-ui-mode="auth host client" hidden> | 76 <div id="main" data-ui-mode="auth host client" hidden> |
77 | 77 |
78 <header class="choice-header"> | 78 <header class="choice-header"> |
79 <img id="icon" src="chromoting128.png"> | 79 <img id="icon" src="chromoting128.png"> |
80 <h1 class="icon-label"> | 80 <h1 class="icon-label"> |
81 <span i18n-content="pageTitle"> | 81 <span i18n-content="productName"> |
82 </span> › <span i18n-content="modeAuthorize" | 82 </span> › <span i18n-content="modeAuthorize" |
83 data-ui-mode="auth"> | 83 data-ui-mode="auth"> |
84 </span><span i18n-content="modeConnect" data-ui-mode="client"> | 84 </span><span i18n-content="modeConnect" data-ui-mode="client"> |
85 </span><span i18n-content="modeShare" data-ui-mode="host"> | 85 </span><span i18n-content="modeShare" data-ui-mode="host"> |
86 </span> | 86 </span> |
87 </h1> | 87 </h1> |
88 </header> | 88 </header> |
89 | 89 |
90 <img id="divider-top" src="dividertop.png"> | 90 <img id="divider-top" src="dividertop.png"> |
91 | 91 |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 | 232 |
233 <section id="debug-log" hidden> | 233 <section id="debug-log" hidden> |
234 <div id="statistics"> | 234 <div id="statistics"> |
235 </div> | 235 </div> |
236 <div id="debug-messages"> | 236 <div id="debug-messages"> |
237 </div> | 237 </div> |
238 </section> <!-- debug-log --> | 238 </section> <!-- debug-log --> |
239 | 239 |
240 </body> | 240 </body> |
241 </html> | 241 </html> |
OLD | NEW |