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

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

Issue 2053723002: MD User Manager: Overhaul Urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@md-user-manager-locked-dialogs
Patch Set: Changed Urls for html resources to root-relative Urls Created 4 years, 6 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="/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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698