Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 227 | 227 |
| 228 <template is="dom-if" if=[[profileManagesSupervisedUsers_]]> | 228 <template is="dom-if" if=[[profileManagesSupervisedUsers_]]> |
| 229 <div id="manageSupervisedUsersContainer" class="settings-box"> | 229 <div id="manageSupervisedUsersContainer" class="settings-box"> |
| 230 <paper-button class="primary-button" | 230 <paper-button class="primary-button" |
| 231 on-tap="onManageSupervisedUsers_"> | 231 on-tap="onManageSupervisedUsers_"> |
| 232 $i18n{manageSupervisedUsers} | 232 $i18n{manageSupervisedUsers} |
| 233 </paper-button> | 233 </paper-button> |
| 234 </div> | 234 </div> |
| 235 </template> | 235 </template> |
| 236 </neon-animatable> | 236 </neon-animatable> |
| 237 <template is="dom-if" name="sync"> | 237 <template is="dom-if" if="[[isAdvancedSyncSettingsVisible_(syncStatus)]]"> |
|
dpapad
2016/08/09 00:09:53
See lines 129-132, where the element that triggers
| |
| 238 <settings-subpage | 238 <template is="dom-if" name="sync"> |
| 239 associated-control="[[$$('#customize-sync')]]" | 239 <settings-subpage |
| 240 page-title="$i18n{syncPageTitle}"> | 240 associated-control="[[$$('#customize-sync')]]" |
| 241 <settings-sync-page></settings-sync-page> | 241 page-title="$i18n{syncPageTitle}"> |
| 242 </settings-subpage> | 242 <settings-sync-page></settings-sync-page> |
| 243 </settings-subpage> | |
| 244 </template> | |
| 243 </template> | 245 </template> |
| 244 <if expr="chromeos"> | 246 <if expr="chromeos"> |
| 245 <template is="dom-if" name="quick-unlock-authenticate" no-search> | 247 <template is="dom-if" name="quick-unlock-authenticate" no-search> |
| 246 <settings-subpage page-title="$i18n{quickUnlockTitle}"> | 248 <settings-subpage page-title="$i18n{quickUnlockTitle}"> |
| 247 <settings-quick-unlock-authenticate | 249 <settings-quick-unlock-authenticate |
| 248 set-modes="{{quickUnlockSetModes}}" | 250 set-modes="{{quickUnlockSetModes}}" |
| 249 profile-name="[[profileName_]]"> | 251 profile-name="[[profileName_]]"> |
| 250 </settings-quick-unlock-authenticate> | 252 </settings-quick-unlock-authenticate> |
| 251 </settings-subpage> | 253 </settings-subpage> |
| 252 </template> | 254 </template> |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 319 | 321 |
| 320 <if expr="chromeos"> | 322 <if expr="chromeos"> |
| 321 <template is="dom-if" if="[[easyUnlockEnabled_]]"> | 323 <template is="dom-if" if="[[easyUnlockEnabled_]]"> |
| 322 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> | 324 <easy-unlock-turn-off-dialog id="easyUnlockTurnOffDialog"> |
| 323 </easy-unlock-turn-off-dialog> | 325 </easy-unlock-turn-off-dialog> |
| 324 </template> | 326 </template> |
| 325 </if> | 327 </if> |
| 326 </template> | 328 </template> |
| 327 <script src="people_page.js"></script> | 329 <script src="people_page.js"></script> |
| 328 </dom-module> | 330 </dom-module> |
| OLD | NEW |