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

Side by Side Diff: chrome/browser/resources/settings/people_page/people_page.html

Issue 1811813002: Settings People Revamp: Easy Unlock: Add browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0107-settings-easy-unlock-add-turn-on-and-off-implementation
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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-checkbox/paper-ch eckbox.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial og.html">
8 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> 8 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html">
9 <link rel="import" href="chrome://md-settings/people_page/sync_page.html"> 9 <link rel="import" href="chrome://md-settings/people_page/sync_page.html">
10 <link rel="import" href="chrome://md-settings/people_page/sync_private_api.html" > 10 <link rel="import" href="chrome://md-settings/people_page/sync_private_api.html" >
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 <template is="dom-if" if=[[easyUnlockEnabled_]]> 98 <template is="dom-if" if=[[easyUnlockEnabled_]]>
99 [[i18n('easyUnlockDescription')]] 99 [[i18n('easyUnlockDescription')]]
100 </template> 100 </template>
101 <a target="_blank" href$="[[i18n('easyUnlockLearnMoreURL')]]"> 101 <a target="_blank" href$="[[i18n('easyUnlockLearnMoreURL')]]">
102 [[i18n('learnMore')]] 102 [[i18n('learnMore')]]
103 </a> 103 </a>
104 </div> 104 </div>
105 </div> 105 </div>
106 <div class="secondary-action"> 106 <div class="secondary-action">
107 <template is="dom-if" if=[[!easyUnlockEnabled_]]> 107 <template is="dom-if" if=[[!easyUnlockEnabled_]]>
108 <paper-button class="secondary-button" 108 <paper-button id="easyUnlockSetup" class="secondary-button"
109 on-tap="onEasyUnlockSetupTap_"> 109 on-tap="onEasyUnlockSetupTap_">
110 [[i18n('easyUnlockSetupButton')]] 110 [[i18n('easyUnlockSetupButton')]]
111 </paper-button> 111 </paper-button>
112 </template> 112 </template>
113 <template is="dom-if" if=[[easyUnlockEnabled_]]> 113 <template is="dom-if" if=[[easyUnlockEnabled_]]>
114 <paper-button class="secondary-button" 114 <paper-button class="secondary-button"
115 on-tap="onEasyUnlockTurnOffTap_"> 115 on-tap="onEasyUnlockTurnOffTap_">
116 [[i18n('easyUnlockTurnOffButton')]] 116 [[i18n('easyUnlockTurnOffButton')]]
117 </paper-button> 117 </paper-button>
118 </template> 118 </template>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 <paper-button dialog-dismiss i18n-content="cancel"> 168 <paper-button dialog-dismiss i18n-content="cancel">
169 </paper-button> 169 </paper-button>
170 <paper-button dialog-confirm class="action-button" 170 <paper-button dialog-confirm class="action-button"
171 on-tap="onDisconnectConfirm_" i18n-content="syncDisconnectConfirm"> 171 on-tap="onDisconnectConfirm_" i18n-content="syncDisconnectConfirm">
172 </paper-button> 172 </paper-button>
173 </div> 173 </div>
174 </paper-dialog> 174 </paper-dialog>
175 </template> 175 </template>
176 <script src="people_page.js"></script> 176 <script src="people_page.js"></script>
177 </dom-module> 177 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698