| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/create_profile.html"> | 1 <link rel="import" href="/create_profile.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/supervised_user_create_confirm
.html"> | 2 <link rel="import" href="/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="/supervised_user_learn_more.html"> |
| 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/fade-in-animation.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 9 | 9 |
| 10 <dom-module id="user-manager-pages"> | 10 <dom-module id="user-manager-pages"> |
| 11 <template> | 11 <template> |
| 12 <style> | 12 <style> |
| 13 neon-animated-pages { | 13 neon-animated-pages { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 <neon-animatable id="supervised-create-confirm-page"> | 48 <neon-animatable id="supervised-create-confirm-page"> |
| 49 <template is="dom-if" | 49 <template is="dom-if" |
| 50 if="[[isPresentIn_(selectedPage_, | 50 if="[[isPresentIn_(selectedPage_, |
| 51 'supervised-create-confirm-page')]]"> | 51 'supervised-create-confirm-page')]]"> |
| 52 <supervised-user-create-confirm profile-info="[[pageData_]]"> | 52 <supervised-user-create-confirm profile-info="[[pageData_]]"> |
| 53 </supervised-user-create-confirm> | 53 </supervised-user-create-confirm> |
| 54 </template> | 54 </template> |
| 55 </neon-animatable> | 55 </neon-animatable> |
| 56 </neon-animated-pages> | 56 </neon-animated-pages> |
| 57 </template> | 57 </template> |
| 58 <script src="chrome://md-user-manager/user_manager_pages.js"></script> | 58 <script src="user_manager_pages.js"></script> |
| 59 </dom-module> | 59 </dom-module> |
| OLD | NEW |