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

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

Issue 1842703004: Revert "MD user manager (learn more page, user manager tutorial)" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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_learn_more.htm l">
3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/slide-from-left-animation.html"> 2 <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-right-animation.html"> 3 <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/neon-ani mated-pages.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
7 6
8 <dom-module id="user-manager-pages"> 7 <dom-module id="user-manager-pages">
9 <link rel="import" type="css" 8 <link rel="import" type="css"
10 href="chrome://md-user-manager/user_manager_pages.css"> 9 href="chrome://md-user-manager/user_manager_pages.css">
11 <template> 10 <template>
12 <neon-animated-pages id="animatedPages" attr-for-selected="id" 11 <neon-animated-pages id="animatedPages" attr-for-selected="id"
13 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation" 12 selected="[[selectedPage_]]" entry-animation="slide-from-left-animation"
14 exit-animation="slide-right-animation"> 13 exit-animation="slide-right-animation">
15 <div id="create-user-page"> 14 <div id="create-user-page">
16 <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'create-user-p age')]]" restamp> 15 <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'create-user-p age')]]" restamp>
17 <create-profile></create-profile> 16 <create-profile></create-profile>
18 </template> 17 </template>
19 </div> 18 </div>
20 <div id="user-pods-page"> 19 <div id="user-pods-page">
21 <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'user-pods-pag e')]]"> 20 <template is="dom-if" if="[[isPageVisible_(selectedPage_, 'user-pods-pag e')]]">
22 <content></content> 21 <content></content>
23 </template> 22 </template>
24 </div> 23 </div>
25 <div id="supervised-learn-more-page">
26 <template is="dom-if"
27 if="[[isPageVisible_(selectedPage_, 'supervised-learn-more-page')]]" >
28 <supervised-user-learn-more></supervised-user-learn-more>
29 </template>
30 </div>
31 <content></content>
32 </neon-animated-pages> 24 </neon-animated-pages>
33 </template> 25 </template>
34 <script src="chrome://md-user-manager/user_manager_pages.js"></script> 26 <script src="chrome://md-user-manager/user_manager_pages.js"></script>
35 </dom-module> 27 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698