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

Side by Side Diff: remoting/webapp/crd/html/ui_me2me.html

Issue 944183002: HostTableEntry refactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 <!-- 1 <!--
2 Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <section id="host-list-div" class="host-list-container"> 6 <section id="host-list-div" class="host-list-container">
7 7
8 <div id="me2me-first-run"> 8 <div id="me2me-first-run">
9 <h2 i18n-content="MODE_ME2ME"></h2> 9 <h2 i18n-content="MODE_ME2ME"></h2>
10 <div> 10 <div>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <img src="icon_host.webp" class="host-list-main-icon"> 51 <img src="icon_host.webp" class="host-list-main-icon">
52 <div class="box-spacer host-list-label" 52 <div class="box-spacer host-list-label"
53 id="start-daemon-message" 53 id="start-daemon-message"
54 i18n-content="HOME_DAEMON_START_MESSAGE"></div> 54 i18n-content="HOME_DAEMON_START_MESSAGE"></div>
55 <button type="button" 55 <button type="button"
56 id="start-daemon" 56 id="start-daemon"
57 i18n-content="HOME_DAEMON_START_BUTTON"> 57 i18n-content="HOME_DAEMON_START_BUTTON">
58 </button> 58 </button>
59 </div> <!-- disabled --> 59 </div> <!-- disabled -->
60 <div id="this-host-connect" 60 <div id="this-host-connect"
61 class="section-row clickable no-non-local-hosts"
62 data-daemon-state="enabled"> 61 data-daemon-state="enabled">
63 <div class="host-list-main-icon"> 62 <div class='host-entry'></div>
64 <span id="this-host-warning" hidden></span>
65 <img id="this-host-icon"
66 src="icon_host.webp">
67 </div>
68 <div id="this-host-name" class="box-spacer"></div>
69 <span id="this-host-rename"
70 class="host-list-edit"
71 tabIndex="0"
72 i18n-title="TOOLTIP_RENAME">
73 <img class="host-list-rename-icon"
74 src="icon_pencil.webp">
75 </span>
76 <button type="button" 63 <button type="button"
77 id="stop-daemon" 64 id="stop-daemon"
78 i18n-content="HOME_DAEMON_STOP_BUTTON"> 65 i18n-content="HOME_DAEMON_STOP_BUTTON">
79 </button> 66 </button>
80 </div> <!-- this-host-connect --> 67 </div> <!-- this-host-connect -->
68 <div class='local-host-info'></div>
Jamie 2015/02/23 22:28:11 Is this a new div to contain information about the
kelvinp 2015/02/24 22:04:44 Done.
81 <div data-daemon-state="enabled"> 69 <div data-daemon-state="enabled">
82 <div> 70 <div>
83 <span i18n-content="HOME_DAEMON_ACTIVE_MESSAGE"></span> 71 <span i18n-content="HOME_DAEMON_ACTIVE_MESSAGE"></span>
84 <a id="change-daemon-pin" 72 <a id="change-daemon-pin"
85 href="#" 73 href="#"
86 i18n-content="HOME_DAEMON_CHANGE_PIN_LINK"></a> 74 i18n-content="HOME_DAEMON_CHANGE_PIN_LINK"></a>
87 </div> 75 </div>
88 <div id="paired-client-manager-message" hidden> 76 <div id="paired-client-manager-message" hidden>
89 <span i18n-content="HOME_DAEMON_PAIRED_MESSAGE"></span> 77 <span i18n-content="HOME_DAEMON_PAIRED_MESSAGE"></span>
90 <a href="#" 78 <a href="#"
91 id="open-paired-client-manager-dialog" 79 id="open-paired-client-manager-dialog"
92 i18n-content="HOME_DAEMON_MANAGE_PAIRINGS"></a> 80 i18n-content="HOME_DAEMON_MANAGE_PAIRINGS"></a>
93 </div> 81 </div>
94 </div> <!-- enabled --> 82 </div> <!-- enabled -->
95 </div> <!-- daemon-control --> 83 </div> <!-- daemon-control -->
96 84
97 </div> <!-- me2me-content --> 85 </div> <!-- me2me-content -->
98 86
99 </section> <!-- host-list-div --> 87 </section> <!-- host-list-div -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698