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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="chrome://md-settings/sync_page/sync_page.html">
5 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa ges.html">
6 <link rel="import" href="chrome://md-settings/settings_page/settings_subheader.h tml">
7
8 <dom-module id="cr-settings-signin-page">
9 <link rel="import" type="css"
10 href="chrome://md-settings/settings_page/settings_page.css">
11 <link rel="import" type="css" href="signin_page.css">
12 <template>
13 <cr-settings-animated-pages id="pages" current-route="{{currentRoute}}"
14 section="signin">
15 <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
16 <paper-button i18n-content="syncPageTitle" on-tap="onSyncTap_" raised>
17 </paper-button>
18 </neon-animatable>
19 <neon-animatable id="sync">
20 <settings-subheader i18n-values="page-title:syncPageTitle">
21 </settings-subheader>
22 <cr-settings-sync-page current-route="[[currentRoute]]">
23 </cr-settings-sync-page>
24 </neon-animatable>
25 </cr-settings-animated-pages>
26 </template>
27 <script src="signin_page.js"></script>
28 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698