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

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 the comments Created 4 years, 11 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..57f9cf672eff93f773dab36109ccf3dd28ff38f9
--- /dev/null
+++ b/chrome/browser/resources/md_user_manager/user_manager_pages.html
@@ -0,0 +1,15 @@
+<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