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

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

Issue 1503403004: Settings People Rewrite: Move users_page as subpage of People. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@0053-people-rename-a-bunch-of-stuff
Patch Set: Created 5 years 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
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/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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 on-tap="onManageOtherPeople_"> 68 on-tap="onManageOtherPeople_">
65 </paper-button> 69 </paper-button>
66 </div> 70 </div>
67 </neon-animatable> 71 </neon-animatable>
68 <neon-animatable id="sync"> 72 <neon-animatable id="sync">
69 <settings-subheader i18n-values="page-title:syncPageTitle"> 73 <settings-subheader i18n-values="page-title:syncPageTitle">
70 </settings-subheader> 74 </settings-subheader>
71 <settings-sync-page current-route="[[currentRoute]]"> 75 <settings-sync-page current-route="[[currentRoute]]">
72 </settings-sync-page> 76 </settings-sync-page>
73 </neon-animatable> 77 </neon-animatable>
78 <if expr="chromeos">
79 <neon-animatable id="users">
80 <settings-subheader i18n-values="page-title:usersPageTitle">
81 </settings-subheader>
82 <settings-users-page prefs="{{prefs}}"></settings-users-page>
83 <neon-animatable>
84 </if>
74 </settings-animated-pages> 85 </settings-animated-pages>
75 86
76 <paper-dialog modal id="disconnectDialog"> 87 <paper-dialog modal id="disconnectDialog">
77 <h2 i18n-content="syncDisconnectTitle"></h2> 88 <h2 i18n-content="syncDisconnectTitle"></h2>
78 <div i18n-values=".innerHTML:syncDisconnectExplanation"></div> 89 <div i18n-values=".innerHTML:syncDisconnectExplanation"></div>
79 <if expr="(not chromeos and is_posix) or is_win or is_macosx"> 90 <if expr="(not chromeos and is_posix) or is_win or is_macosx">
80 <paper-checkbox id="deleteProfile" 91 <paper-checkbox id="deleteProfile"
81 i18n-content="syncDisconnectDeleteProfile"> 92 i18n-content="syncDisconnectDeleteProfile">
82 </paper-checkbox> 93 </paper-checkbox>
83 </if> 94 </if>
84 <div class="button-strip"> 95 <div class="button-strip">
85 <paper-button dialog-dismiss i18n-content="cancel"> 96 <paper-button dialog-dismiss i18n-content="cancel">
86 </paper-button> 97 </paper-button>
87 <paper-button dialog-confirm raised on-tap="onDisconnectConfirm_" 98 <paper-button dialog-confirm raised on-tap="onDisconnectConfirm_"
88 i18n-content="syncDisconnectConfirm"> 99 i18n-content="syncDisconnectConfirm">
89 </paper-button> 100 </paper-button>
90 </div> 101 </div>
91 </paper-dialog> 102 </paper-dialog>
92 </template> 103 </template>
93 <script src="people_page.js"></script> 104 <script src="people_page.js"></script>
94 </dom-module> 105 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698