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

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_and_forms_page.html

Issue 2840713002: MD Settings: Remove usage of deprecated iron-flex-layout.html. (Closed)
Patch Set: Fix broken layout in startup_urls_page.html Created 3 years, 8 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 <link rel="import" href="chrome://resources/html/assert.html"> 1 <link rel="import" href="chrome://resources/html/assert.html">
2 <link rel="import" href="chrome://resources/html/cr.html"> 2 <link rel="import" href="chrome://resources/html/cr.html">
3 <link rel="import" href="chrome://resources/html/polymer.html"> 3 <link rel="import" href="chrome://resources/html/polymer.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
6 <link rel="import" href="autofill_section.html"> 7 <link rel="import" href="autofill_section.html">
7 <link rel="import" href="passwords_section.html"> 8 <link rel="import" href="passwords_section.html">
8 <link rel="import" href="../controls/extension_controlled_indicator.html"> 9 <link rel="import" href="../controls/extension_controlled_indicator.html">
9 <link rel="import" href="../controls/settings_toggle_button.html"> 10 <link rel="import" href="../controls/settings_toggle_button.html">
10 <link rel="import" href="../prefs/prefs.html"> 11 <link rel="import" href="../prefs/prefs.html">
11 <link rel="import" href="../prefs/prefs_behavior.html"> 12 <link rel="import" href="../prefs/prefs_behavior.html">
12 <link rel="import" href="../route.html"> 13 <link rel="import" href="../route.html">
13 <link rel="import" href="../settings_page/settings_animated_pages.html"> 14 <link rel="import" href="../settings_page/settings_animated_pages.html">
14 <link rel="import" href="../settings_page/settings_subpage.html"> 15 <link rel="import" href="../settings_page/settings_subpage.html">
15 <link rel="import" href="../settings_shared_css.html"> 16 <link rel="import" href="../settings_shared_css.html">
16 17
17 <dom-module id="settings-passwords-and-forms-page"> 18 <dom-module id="settings-passwords-and-forms-page">
18 <template> 19 <template>
19 <style include="settings-shared"></style> 20 <style include="settings-shared iron-flex"></style>
20 <settings-animated-pages id="pages" section="passwordsAndForms" 21 <settings-animated-pages id="pages" section="passwordsAndForms"
21 focus-config="[[focusConfig_]]"> 22 focus-config="[[focusConfig_]]">
22 <neon-animatable route-path="default"> 23 <neon-animatable route-path="default">
23 <div class="settings-box first two-line"> 24 <div class="settings-box first two-line">
24 <div class="start two-line" on-tap="onAutofillTap_" actionable 25 <div class="start two-line" on-tap="onAutofillTap_" actionable
25 id="autofillManagerButton"> 26 id="autofillManagerButton">
26 <div class="flex"> 27 <div class="flex">
27 $i18n{autofill} 28 $i18n{autofill}
28 <div class="secondary" id="autofillSecondary"> 29 <div class="secondary" id="autofillSecondary">
29 $i18n{autofillDetail} 30 $i18n{autofillDetail}
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 search-term="{{passwordFilter_}}"> 67 search-term="{{passwordFilter_}}">
67 <passwords-section id="passwordSection" filter="[[passwordFilter_]]" 68 <passwords-section id="passwordSection" filter="[[passwordFilter_]]"
68 prefs="{{prefs}}"> 69 prefs="{{prefs}}">
69 </passwords-section> 70 </passwords-section>
70 </settings-subpage> 71 </settings-subpage>
71 </template> 72 </template>
72 </settings-animated-pages> 73 </settings-animated-pages>
73 </template> 74 </template>
74 <script src="passwords_and_forms_page.js"></script> 75 <script src="passwords_and_forms_page.js"></script>
75 </dom-module> 76 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698