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

Unified Diff: components/proximity_auth/webui/resources/device-list.html

Issue 1264703003: Implement debugging local unlock keys in chrome://proximity-auth. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + fixes Created 5 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 side-by-side diff with in-line comments
Download patch
Index: components/proximity_auth/webui/resources/device-list.html
diff --git a/components/proximity_auth/webui/resources/device-list.html b/components/proximity_auth/webui/resources/device-list.html
index 7141559cb5359636420ce02d5f7f71f5cc4c9430..15a5ecd904215b2b84b5f67dc9714197418fffae 100644
--- a/components/proximity_auth/webui/resources/device-list.html
+++ b/components/proximity_auth/webui/resources/device-list.html
@@ -95,15 +95,21 @@
<div hidden>
<div>
User Present:
- <span>[[item.remoteState.userPresent]]</span>
+ <span>
+ [[getUserPresenceText_(item.remoteState.userPresent)]]
+ </span>
</div>
<div>
Secure Screen Lock:
- <span>[[item.remoteState.secureScreenLock]]</span>
+ <span>
+ [[getScreenLockText_(item.remoteState.secureScreenLock)]]
+ </span>
</div>
<div>
Trust Agent:
- <span>[[item.remoteState.trustAgent]]</span>
+ <span>
+ [[getTrustAgentText_(item.remoteState.trustAgent)]]
+ </span>
</div>
</div>
</core-tooltip>
@@ -123,6 +129,8 @@
</template>
</div>
<paper-icon-button class="end-icon"
+ bluetooth-address="[[item.bluetoothAddress]]"
+ on-click="toggleConnection_"
icon="[[getIconForConnection_(item.connectionStatus)]]"
hidden$="{{!item.unlockKey}}">
</paper-icon-button>

Powered by Google App Engine
This is Rietveld 408576698