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

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

Issue 2195793003: MD Settings: add test for managed actionability of people section (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@people-sync-disabled-actionable
Patch Set: tommycli@ review Created 4 years, 4 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/test/data/webui/settings/people_page_test.js » ('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/cr_elements/icons.html"> 1 <link rel="import" href="chrome://resources/cr_elements/icons.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/cr_elements/cr_dialog/cr_dialog.html "> 7 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
8 <link rel="import" href="/controls/settings_checkbox.html"> 8 <link rel="import" href="/controls/settings_checkbox.html">
9 <link rel="import" href="/people_page/sync_page.html"> 9 <link rel="import" href="/people_page/sync_page.html">
10 <link rel="import" href="/people_page/profile_info_browser_proxy.html"> 10 <link rel="import" href="/people_page/profile_info_browser_proxy.html">
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 <div class="middle" 119 <div class="middle"
120 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]"> 120 inner-h-t-m-l="[[getDomainHtml_(syncStatus.domain)]]">
121 </div> 121 </div>
122 </div> 122 </div>
123 </template> 123 </template>
124 </if> 124 </if>
125 125
126 <template is="dom-if" 126 <template is="dom-if"
127 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> 127 if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]">
128 <div class="settings-box two-line" on-tap="onSyncTap_" 128 <div class="settings-box two-line" on-tap="onSyncTap_"
129 actionable$="[[!syncStatus.managed]]"> 129 id="customize-sync" actionable$="[[!syncStatus.managed]]">
130 <div class="icon-container"> 130 <div class="icon-container">
131 <iron-icon id="sync-icon" icon$="[[getSyncIcon_(syncStatus)]]"> 131 <iron-icon id="sync-icon" icon$="[[getSyncIcon_(syncStatus)]]">
132 </iron-icon> 132 </iron-icon>
133 </div> 133 </div>
134 <div class="middle"> 134 <div class="middle">
135 <div>$i18n{sync}</div> 135 <div>$i18n{sync}</div>
136 <div class="secondary" hidden="[[syncStatus.hasError]]"> 136 <div class="secondary" hidden="[[syncStatus.hasError]]">
137 [[syncStatus.statusText]] 137 [[syncStatus.statusText]]
138 </div> 138 </div>
139 <div class="secondary sync-error" 139 <div class="secondary sync-error"
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 314
315 <if expr="chromeos"> 315 <if expr="chromeos">
316 <template is="dom-if" if="[[easyUnlockEnabled_]]"> 316 <template is="dom-if" if="[[easyUnlockEnabled_]]">
317 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> 317 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog">
318 </easy-unlock-turn-off-dialog> 318 </easy-unlock-turn-off-dialog>
319 </template> 319 </template>
320 </if> 320 </if>
321 </template> 321 </template>
322 <script src="people_page.js"></script> 322 <script src="people_page.js"></script>
323 </dom-module> 323 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/webui/settings/people_page_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698