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

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

Issue 10703034: Remove 'Enable' button on unsupported platforms. Added 'No hosts' message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Split 'no hosts' message into two sentences and display the second only if hosting is not supported. Created 8 years, 5 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
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 <p class="infographic-description" 133 <p class="infographic-description"
134 i18n-content="ME2ME_FIRST_RUN"></p> 134 i18n-content="ME2ME_FIRST_RUN"></p>
135 <button id="get-started-me2me" i18n-content="GET_STARTED"></button> 135 <button id="get-started-me2me" i18n-content="GET_STARTED"></button>
136 </div> 136 </div>
137 <div class="infographic"> 137 <div class="infographic">
138 <img src="infographic_my_computers.png"> 138 <img src="infographic_my_computers.png">
139 </div> 139 </div>
140 </div> 140 </div>
141 <div id="me2me-content"> 141 <div id="me2me-content">
142 <div id="host-list" hidden></div> 142 <div id="host-list" hidden></div>
143 <div id="host-list-empty">
144 <span i18n-content="HOST_LIST_EMPTY"></span>
145 <span id="host-list-empty-instructions"
146 i18n-content="HOST_LIST_EMPTY_INSTRUCTIONS"
147 i18n-value-1="<a href='https://chrome.google.com/remotedesktop '>chrome.google.com/remotedesktop</a>"
148 i18n-value-name-2="HOME_DAEMON_START_BUTTON"></span>
149 </div>
143 <div id="host-list-error" class="box" hidden> 150 <div id="host-list-error" class="box" hidden>
144 <div id="host-list-error-message" class="error-state"></div> 151 <div id="host-list-error-message" class="error-state"></div>
145 <div class="box-spacer"></div> 152 <div class="box-spacer"></div>
146 <button type="button" 153 <button type="button"
147 id="host-list-refresh-failed-button"></button> 154 id="host-list-refresh-failed-button"></button>
148 </div> 155 </div>
149 <div id="daemon-control" data-daemon-state="enabled disabled" hidden> 156 <div id="daemon-control" data-daemon-state="enabled disabled" hidden>
150 <div class="section-row no-non-local-hosts" 157 <div class="section-row no-non-local-hosts"
151 data-daemon-state="disabled"> 158 data-daemon-state="disabled">
152 <img src="icon_host.png" class="host-list-main-icon"> 159 <img src="icon_host.png" class="host-list-main-icon">
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 <div class="arrow-down"></div> 615 <div class="arrow-down"></div>
609 </div> 616 </div>
610 </div> <!-- session-toolbar --> 617 </div> <!-- session-toolbar -->
611 </div> <!-- session-mode --> 618 </div> <!-- session-mode -->
612 619
613 <div id="statistics" dir="ltr" class="selectable" hidden> 620 <div id="statistics" dir="ltr" class="selectable" hidden>
614 </div> <!-- statistics --> 621 </div> <!-- statistics -->
615 622
616 </body> 623 </body>
617 </html> 624 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698