OLD | NEW |
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/polymer/v1_0/polymer/polymer.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 3 <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/paper-button/paper-butt
on.html"> | 4 <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-checkbox/paper-ch
eckbox.html"> | 5 <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-dialog/paper-dial
og.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog/paper-dial
og.html"> |
7 <link rel="import" href="chrome://md-settings/people_page/sync_page.html"> | 7 <link rel="import" href="chrome://md-settings/people_page/sync_page.html"> |
8 <link rel="import" href="chrome://md-settings/people_page/sync_private_api.html"
> | 8 <link rel="import" href="chrome://md-settings/people_page/sync_private_api.html"
> |
9 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa
ges.html"> | 9 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa
ges.html"> |
10 <link rel="import" href="chrome://md-settings/settings_page/settings_subheader.h
tml"> | 10 <link rel="import" href="chrome://md-settings/settings_page/settings_subheader.h
tml"> |
11 | 11 |
| 12 <if expr="chromeos"> |
| 13 <link rel="import" href="chrome://md-settings/people_page/users_page.html"> |
| 14 </if> |
| 15 |
12 <dom-module id="settings-people-page"> | 16 <dom-module id="settings-people-page"> |
13 <link rel="import" type="css" | 17 <link rel="import" type="css" |
14 href="chrome://md-settings/settings_shared.css"> | 18 href="chrome://md-settings/settings_shared.css"> |
15 <template> | 19 <template> |
16 <settings-animated-pages id="pages" current-route="{{currentRoute}}" | 20 <settings-animated-pages id="pages" current-route="{{currentRoute}}" |
17 section="people"> | 21 section="people"> |
18 <neon-animatable id="main"> | 22 <neon-animatable id="main"> |
19 <div class="settings-box"> | 23 <div class="settings-box"> |
20 <div class="split"> | 24 <div class="split"> |
21 <span class="start"> | 25 <span class="start"> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 on-tap="onManageOtherPeople_"> | 66 on-tap="onManageOtherPeople_"> |
63 </paper-button> | 67 </paper-button> |
64 </div> | 68 </div> |
65 </neon-animatable> | 69 </neon-animatable> |
66 <neon-animatable id="sync"> | 70 <neon-animatable id="sync"> |
67 <settings-subheader i18n-values="page-title:syncPageTitle"> | 71 <settings-subheader i18n-values="page-title:syncPageTitle"> |
68 </settings-subheader> | 72 </settings-subheader> |
69 <settings-sync-page current-route="[[currentRoute]]"> | 73 <settings-sync-page current-route="[[currentRoute]]"> |
70 </settings-sync-page> | 74 </settings-sync-page> |
71 </neon-animatable> | 75 </neon-animatable> |
| 76 <if expr="chromeos"> |
| 77 <neon-animatable id="users"> |
| 78 <settings-subheader i18n-values="page-title:usersPageTitle"> |
| 79 </settings-subheader> |
| 80 <settings-users-page prefs="{{prefs}}"></settings-users-page> |
| 81 <neon-animatable> |
| 82 </if> |
72 </settings-animated-pages> | 83 </settings-animated-pages> |
73 | 84 |
74 <paper-dialog modal id="disconnectDialog"> | 85 <paper-dialog modal id="disconnectDialog"> |
75 <h2 i18n-content="syncDisconnectTitle"></h2> | 86 <h2 i18n-content="syncDisconnectTitle"></h2> |
76 <div i18n-values=".innerHTML:syncDisconnectExplanation"></div> | 87 <div i18n-values=".innerHTML:syncDisconnectExplanation"></div> |
77 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> | 88 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> |
78 <paper-checkbox id="deleteProfile" | 89 <paper-checkbox id="deleteProfile" |
79 i18n-content="syncDisconnectDeleteProfile"> | 90 i18n-content="syncDisconnectDeleteProfile"> |
80 </paper-checkbox> | 91 </paper-checkbox> |
81 </if> | 92 </if> |
82 <div class="button-strip"> | 93 <div class="button-strip"> |
83 <paper-button dialog-dismiss i18n-content="cancel"> | 94 <paper-button dialog-dismiss i18n-content="cancel"> |
84 </paper-button> | 95 </paper-button> |
85 <paper-button dialog-confirm raised on-tap="onDisconnectConfirm_" | 96 <paper-button dialog-confirm raised on-tap="onDisconnectConfirm_" |
86 i18n-content="syncDisconnectConfirm"> | 97 i18n-content="syncDisconnectConfirm"> |
87 </paper-button> | 98 </paper-button> |
88 </div> | 99 </div> |
89 </paper-dialog> | 100 </paper-dialog> |
90 </template> | 101 </template> |
91 <script src="people_page.js"></script> | 102 <script src="people_page.js"></script> |
92 </dom-module> | 103 </dom-module> |
OLD | NEW |