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

Unified Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 1806123002: Settings People Revamp: Easy Unlock: Add browser proxy and setup flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/people_page/people_page.html
diff --git a/chrome/browser/resources/settings/people_page/people_page.html b/chrome/browser/resources/settings/people_page/people_page.html
index 0c11a25c91c8d8350bfe503eda55f1b555bb22d6..2910fd50863c840270e63e64b556db697be6dd0e 100644
--- a/chrome/browser/resources/settings/people_page/people_page.html
+++ b/chrome/browser/resources/settings/people_page/people_page.html
@@ -14,6 +14,7 @@
<if expr="chromeos">
<link rel="import" href="chrome://md-settings/people_page/change_picture.html">
+<link rel="import" href="chrome://md-settings/people_page/easy_unlock_browser_proxy.html">
<link rel="import" href="chrome://md-settings/people_page/users_page.html">
</if>
<if expr="not chromeos">
@@ -103,14 +104,15 @@
</div>
</div>
<div class="secondary-action">
- <!-- TODO(tommycli): Hook up these buttons to actions. -->
<template is="dom-if" if=[[!easyUnlockEnabled_]]>
- <paper-button class="secondary-button">
+ <paper-button class="secondary-button"
+ on-tap="onEasyUnlockSetupTap_">
[[i18n('easyUnlockSetupButton')]]
</paper-button>
</template>
<template is="dom-if" if=[[easyUnlockEnabled_]]>
- <paper-button class="secondary-button">
+ <paper-button class="secondary-button"
+ on-tap="onEasyUnlockTurnOffTap_">
[[i18n('easyUnlockTurnOffButton')]]
</paper-button>
</template>

Powered by Google App Engine
This is Rietveld 408576698