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

Unified Diff: chrome/browser/resources/settings/signin_page/signin_page.html

Issue 1381553003: Settings Rewrite: Add Sign-in (Chrome) section (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/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..fa3017c54b70de9731191670968d268cf6da2a52
--- /dev/null
+++ b/chrome/browser/resources/settings/signin_page/signin_page.html
@@ -0,0 +1,27 @@
+<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="settings-signin-page">
+ <link rel="import" type="css"
+ href="chrome://md-settings/settings_page/settings_page.css">
+ <template>
+ <settings-animated-pages id="pages" current-route="{{currentRoute}}"
+ section="signin">
+ <neon-animatable id="">
+ <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>
+ </settings-animated-pages>
+ </template>
+ <script src="signin_page.js"></script>
+</dom-module>
« no previous file with comments | « chrome/browser/resources/settings/settings_resources.grd ('k') | chrome/browser/resources/settings/signin_page/signin_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698