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

Unified Diff: chrome/browser/resources/md_user_manager/user_manager_pages.html

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dan's comments Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_user_manager/user_manager_pages.html
diff --git a/chrome/browser/resources/md_user_manager/user_manager_pages.html b/chrome/browser/resources/md_user_manager/user_manager_pages.html
new file mode 100644
index 0000000000000000000000000000000000000000..7765b50f1a67e0410dc605cb4718110e2a7db04f
--- /dev/null
+++ b/chrome/browser/resources/md_user_manager/user_manager_pages.html
@@ -0,0 +1,16 @@
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animated-pages.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/slide-from-left-animation.html">
+<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animations/slide-right-animation.html">
+
+<dom-module id="user-manager-pages">
+ <link rel="stylesheet" type="css" href="user_manager_pages.css">
+ <template>
+ <neon-animated-pages id="animatedPages" attr-for-selected="id"
+ selected="[[selectedPage]]" entry-animation="slide-from-left-animation"
+ exit-animation="slide-right-animation">
+ <content></content>
+ </neon-animated-pages>
+ </template>
+ <script src="chrome://md-user-manager/user_manager_pages.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698