Index: chrome/browser/resources/settings/signin_page/signin_page.html |
diff --git a/chrome/browser/resources/settings/signin_page/signin_page.html b/chrome/browser/resources/settings/signin_page/signin_page.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a2f3e6148b3ad64bd02ac77be852b160ae99bfd |
--- /dev/null |
+++ b/chrome/browser/resources/settings/signin_page/signin_page.html |
@@ -0,0 +1,28 @@ |
+<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
+<link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-animatable.html"> |
+<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html"> |
+<link rel="import" href="chrome://md-settings/sync_page/sync_page.html"> |
+<link rel="import" href="chrome://md-settings/settings_page/settings_animated_pages.html"> |
+<link rel="import" href="chrome://md-settings/settings_page/settings_subheader.html"> |
+ |
+<dom-module id="cr-settings-signin-page"> |
+ <link rel="import" type="css" |
+ href="chrome://md-settings/settings_page/settings_page.css"> |
+ <link rel="import" type="css" href="signin_page.css"> |
+ <template> |
+ <cr-settings-animated-pages id="pages" current-route="{{currentRoute}}" |
+ section="signin"> |
+ <neon-animatable id=""> |
Dan Beam
2015/09/30 22:43:16
why can't we just put <neon-animatable id>?
tommycli
2015/10/01 16:44:59
It technically works, however, I think it's less c
michaelpg
2015/10/03 05:23:31
^ that
tommycli
2015/10/05 17:15:45
Sounds good I'll change it back to id="main" for a
|
+ <paper-button i18n-content="syncPageTitle" on-tap="onSyncTap_" raised> |
+ </paper-button> |
+ </neon-animatable> |
+ <neon-animatable id="sync"> |
+ <settings-subheader i18n-values="page-title:syncPageTitle"> |
+ </settings-subheader> |
+ <cr-settings-sync-page current-route="[[currentRoute]]"> |
+ </cr-settings-sync-page> |
+ </neon-animatable> |
+ </cr-settings-animated-pages> |
+ </template> |
+ <script src="signin_page.js"></script> |
+</dom-module> |