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

Side by Side Diff: chrome/browser/resources/chromeos/login/gaia_password_changed.html

Issue 2723873003: MD WebUI: change all <dom-module> to use id="" instead of name="" (Closed)
Patch Set: Created 3 years, 9 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
1 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 1 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h tml">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-in-animation.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio ns/fade-out-animation.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani mated-pages.html">
(...skipping 21 matching lines...) Expand all
32 lose all the data in cryptohome. 32 lose all the data in cryptohome.
33 'cancel' - fired when user press X-button. 33 'cancel' - fired when user press X-button.
34 34
35 Methods: 35 Methods:
36 'invalidate' - mark password input as invalid. 36 'invalidate' - mark password input as invalid.
37 'reset' - reset element, sets in on the first screen and enables 37 'reset' - reset element, sets in on the first screen and enables
38 buttons. 38 buttons.
39 'focus' - if current card is the first one it focuses password input. 39 'focus' - if current card is the first one it focuses password input.
40 40
41 --> 41 -->
42 <dom-module name="gaia-password-changed"> 42 <dom-module id="gaia-password-changed">
43 <link rel="stylesheet" href="gaia_password_changed.css"> 43 <link rel="stylesheet" href="gaia_password_changed.css">
44 44
45 <template> 45 <template>
46 <neon-animated-pages id="animatedPages" class="fit" 46 <neon-animated-pages id="animatedPages" class="fit"
47 entry-animation="fade-in-animation" exit-animation="fade-out-animation" 47 entry-animation="fade-in-animation" exit-animation="fade-out-animation"
48 on-neon-animation-finish="onAnimationFinish_" selected="0"> 48 on-neon-animation-finish="onAnimationFinish_" selected="0">
49 <neon-animatable class="fit"> 49 <neon-animatable class="fit">
50 <gaia-card id="oldPasswordCard" class="fit"> 50 <gaia-card id="oldPasswordCard" class="fit">
51 <gaia-header class="header" email="[[email]]"> 51 <gaia-header class="header" email="[[email]]">
52 </gaia-header> 52 </gaia-header>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 <neon-animatable class="fit"> 91 <neon-animatable class="fit">
92 <throbber-notice class="fit" i18n-values="text:gaiaLoading"> 92 <throbber-notice class="fit" i18n-values="text:gaiaLoading">
93 </throbber-notice> 93 </throbber-notice>
94 </neon-animatable> 94 </neon-animatable>
95 </neon-animated-pages> 95 </neon-animated-pages>
96 <navigation-bar id="navigation" disabled="[[disabled]]" close-visible 96 <navigation-bar id="navigation" disabled="[[disabled]]" close-visible
97 on-close="onClose_"> 97 on-close="onClose_">
98 </navigation-bar> 98 </navigation-bar>
99 </template> 99 </template>
100 </dom-module> 100 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698