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

Side by Side Diff: remoting/webapp/main.html

Issue 9664013: Hide daemon UI initially. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/client_screen.js ('k') | remoting/webapp/remoting.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 type="button"> 108 type="button">
109 </button> 109 </button>
110 </div> 110 </div>
111 </div> 111 </div>
112 </section> <!-- Remote Assistance --> 112 </section> <!-- Remote Assistance -->
113 113
114 <section id="host-list-div" class="host-list-container" hidden> 114 <section id="host-list-div" class="host-list-container" hidden>
115 <h2 i18n-content="MODE_ME2ME"></h2> 115 <h2 i18n-content="MODE_ME2ME"></h2>
116 <div id="host-list"></div> 116 <div id="host-list"></div>
117 <div id="host-list-error" class="error-state"></div> 117 <div id="host-list-error" class="error-state"></div>
118 <div id="daemon-control" data-daemon-state="enabled disabled"> 118 <div id="daemon-control" data-daemon-state="enabled disabled" hidden>
119 <table class="host-list-table"> 119 <table class="host-list-table">
120 <!-- TODO(jamiewalch): Rewrite this using flex boxes and apply the 120 <!-- TODO(jamiewalch): Rewrite this using flex boxes and apply the
121 host-offline style if the daemon is not running --> 121 host-offline style if the daemon is not running -->
122 <tr> 122 <tr>
123 <td class="host-list-main-icon"> 123 <td class="host-list-main-icon">
124 <img src="icon_host.png"> 124 <img src="icon_host.png">
125 </td> 125 </td>
126 <td class="host-list-label"> 126 <td class="host-list-label">
127 <span id="this-computer-name" 127 <span id="this-computer-name"
128 data-daemon-state="enabled"> 128 data-daemon-state="enabled">
129 Spongebob Squaretrousers 129 My computer <!-- Placeholder until daemon mode is finished -->
130 </span> 130 </span>
131 <span i18n-content="HOME_DAEMON_START_MESSAGE" 131 <span i18n-content="HOME_DAEMON_START_MESSAGE"
132 data-daemon-state="disabled"> 132 data-daemon-state="disabled">
133 </span> 133 </span>
134 </td> 134 </td>
135 <td class="mode-select-button-column"> 135 <td class="mode-select-button-column">
136 <button type="button" 136 <button type="button"
137 id="stop-daemon" 137 id="stop-daemon"
138 i18n-content="HOME_DAEMON_STOP_BUTTON" 138 i18n-content="HOME_DAEMON_STOP_BUTTON"
139 data-daemon-state="enabled"> 139 data-daemon-state="enabled">
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 <div class="arrow-down"></div> 433 <div class="arrow-down"></div>
434 </div> 434 </div>
435 </div> <!-- session-toolbar --> 435 </div> <!-- session-toolbar -->
436 </div> <!-- session-mode --> 436 </div> <!-- session-mode -->
437 437
438 <div id="statistics" dir="ltr" class="selectable" hidden> 438 <div id="statistics" dir="ltr" class="selectable" hidden>
439 </div> <!-- statistics --> 439 </div> <!-- statistics -->
440 440
441 </body> 441 </body>
442 </html> 442 </html>
OLDNEW
« no previous file with comments | « remoting/webapp/client_screen.js ('k') | remoting/webapp/remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698