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

Side by Side Diff: chrome/browser/resources/md_user_manager/user_manager_pages.html

Issue 1901853002: Import supervised user dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-confirmation-page
Patch Set: Addressed comments Created 4 years, 8 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
OLDNEW
1 <link rel="import" href="chrome://md-user-manager/create_profile.html"> 1 <link rel="import" href="chrome://md-user-manager/create_profile.html">
2 <link rel="import" href="chrome://md-user-manager/supervised_user_create_confirm .html"> 2 <link rel="import" href="chrome://md-user-manager/supervised_user_create_confirm .html">
3 <link rel="import" href="chrome://md-user-manager/supervised_user_learn_more.htm l"> 3 <link rel="import" href="chrome://md-user-manager/supervised_user_learn_more.htm l">
4 <link rel="import" href="chrome://resources/html/polymer.html"> 4 <link rel="import" href="chrome://resources/html/polymer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-right-animation.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html">
8 8
9 <dom-module id="user-manager-pages"> 9 <dom-module id="user-manager-pages">
10 <link rel="import" type="css" 10 <link rel="import" type="css"
11 href="chrome://md-user-manager/user_manager_pages.css"> 11 href="chrome://md-user-manager/user_manager_pages.css">
12 <template> 12 <template>
13 <neon-animated-pages id="animatedPages" attr-for-selected="id" 13 <neon-animated-pages id="animatedPages" attr-for-selected="id"
14 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation" 14 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation"
15 exit-animation="slide-right-animation"> 15 exit-animation="slide-right-animation">
16 <div id="create-user-page"> 16 <div id="create-user-page">
17 <template is="dom-if" 17 <template is="dom-if"
18 if="[[isPageVisible_(selectedPage_, 'create-user-page')]]" restamp> 18 if="[[isPageVisible_(selectedPage_, 'create-user-page')]]" restamp>
19 <create-profile></create-profile> 19 <create-profile></create-profile>
20 </template> 20 </template>
21 </div> 21 </div>
22 <div id="user-pods-page"> 22 <div id="user-pods-page">
23 <template is="dom-if" 23 <template is="dom-if"
24 if="[[isPageVisible_(selectedPage_, 'user-pods-page')]]"> 24 if="[[isPageVisible_(selectedPage_, 'user-pods-page')]]">
25 <content></content> 25 <content></content>
26 </template> 26 </template>
27 </div> 27 </div>
28 <div id="supervised-learn-more-page"> 28 <div id="supervised-learn-more-page">
29 <template is="dom-if" 29 <template is="dom-if"
30 if="[[isPageVisible_(selectedPage_, 'supervised-learn-more-page')]]" > 30 if="[[isPageVisible_(selectedPage_,
31 'supervised-learn-more-page')]]">
31 <supervised-user-learn-more></supervised-user-learn-more> 32 <supervised-user-learn-more></supervised-user-learn-more>
32 </template> 33 </template>
33 </div> 34 </div>
34 <div id="supervised-create-confirm-page"> 35 <div id="supervised-create-confirm-page">
35 <template is="dom-if" 36 <template is="dom-if"
36 if="[[isPageVisible_(selectedPage_, 'supervised-create-confirm-page' )]]"> 37 if="[[isPageVisible_(selectedPage_,
38 'supervised-create-confirm-page')]]">
37 <supervised-user-create-confirm profile-info="[[pageData_]]"> 39 <supervised-user-create-confirm profile-info="[[pageData_]]">
38 </supervised-user-create-confirm> 40 </supervised-user-create-confirm>
39 </template> 41 </template>
40 </div> 42 </div>
41 <content></content> 43 <content></content>
42 </neon-animated-pages> 44 </neon-animated-pages>
43 </template> 45 </template>
44 <script src="chrome://md-user-manager/user_manager_pages.js"></script> 46 <script src="chrome://md-user-manager/user_manager_pages.js"></script>
45 </dom-module> 47 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698