| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
| 2 <link rel="import" href="chrome://md-settings/a11y_page/a11y_page.html"> | 2 <link rel="import" href="chrome://md-settings/a11y_page/a11y_page.html"> |
| 3 <link rel="import" href="chrome://md-settings/downloads_page/downloads_page.html
"> | 3 <link rel="import" href="chrome://md-settings/downloads_page/downloads_page.html
"> |
| 4 <link rel="import" href="chrome://md-settings/languages_page/languages_page.html
"> | 4 <link rel="import" href="chrome://md-settings/languages_page/languages_page.html
"> |
| 5 <link rel="import" href="chrome://md-settings/location_page/location_page.html"> | 5 <link rel="import" href="chrome://md-settings/location_page/location_page.html"> |
| 6 <link rel="import" href="chrome://md-settings/privacy_page/privacy_page.html"> | 6 <link rel="import" href="chrome://md-settings/privacy_page/privacy_page.html"> |
| 7 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> | 7 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> |
| 8 <link rel="import" href="chrome://md-settings/sync_page/sync_page.html"> | 8 <link rel="import" href="chrome://md-settings/sync_page/sync_page.html"> |
| 9 | 9 |
| 10 <if expr="chromeos"> | 10 <if expr="chromeos"> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 expand-container="{{expandContainer}}" | 32 expand-container="{{expandContainer}}" |
| 33 current-route="[[currentRoute]]" section="privacy"> | 33 current-route="[[currentRoute]]" section="privacy"> |
| 34 <cr-settings-privacy-page prefs="{{prefs}}" | 34 <cr-settings-privacy-page prefs="{{prefs}}" |
| 35 current-route="{{currentRoute}}"> | 35 current-route="{{currentRoute}}"> |
| 36 </cr-settings-privacy-page> | 36 </cr-settings-privacy-page> |
| 37 </cr-settings-section> | 37 </cr-settings-section> |
| 38 | 38 |
| 39 <cr-settings-section i18n-values="page-title:languagesPageTitle" | 39 <cr-settings-section i18n-values="page-title:languagesPageTitle" |
| 40 expand-container="{{expandContainer}}" | 40 expand-container="{{expandContainer}}" |
| 41 current-route="[[currentRoute]]" section="languages"> | 41 current-route="[[currentRoute]]" section="languages"> |
| 42 <cr-settings-languages-page prefs="{{prefs}}"> | 42 <cr-settings-languages-page prefs="{{prefs}}" |
| 43 current-route="{{currentRoute}}"> |
| 43 </cr-settings-languages-page> | 44 </cr-settings-languages-page> |
| 44 </cr-settings-section> | 45 </cr-settings-section> |
| 45 | 46 |
| 46 <cr-settings-section i18n-values="page-title:downloadsPageTitle" | 47 <cr-settings-section i18n-values="page-title:downloadsPageTitle" |
| 47 expand-container="{{expandContainer}}" | 48 expand-container="{{expandContainer}}" |
| 48 current-route="[[currentRoute]]" section="downloads"> | 49 current-route="[[currentRoute]]" section="downloads"> |
| 49 <cr-settings-downloads-page prefs="{{prefs}}"> | 50 <cr-settings-downloads-page prefs="{{prefs}}"> |
| 50 </cr-settings-downloads-page> | 51 </cr-settings-downloads-page> |
| 51 </cr-settings-section> | 52 </cr-settings-section> |
| 52 | 53 |
| 53 <cr-settings-section i18n-values="page-title:a11yPageTitle" | 54 <cr-settings-section i18n-values="page-title:a11yPageTitle" |
| 54 expand-container="{{expandContainer}}" | 55 expand-container="{{expandContainer}}" |
| 55 current-route="[[currentRoute]]" section="a11y"> | 56 current-route="[[currentRoute]]" section="a11y"> |
| 56 <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page> | 57 <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page> |
| 57 </cr-settings-section> | 58 </cr-settings-section> |
| 58 | 59 |
| 59 <cr-settings-section i18n-values="page-title:syncPageTitle" | 60 <cr-settings-section i18n-values="page-title:syncPageTitle" |
| 60 expand-container="{{expandContainer}}" | 61 expand-container="{{expandContainer}}" |
| 61 current-route="[[currentRoute]]" section="sync"> | 62 current-route="[[currentRoute]]" section="sync"> |
| 62 <cr-settings-sync-page></cr-settings-sync-page> | 63 <cr-settings-sync-page></cr-settings-sync-page> |
| 63 </cr-settings-section> | 64 </cr-settings-section> |
| 64 </template> | 65 </template> |
| 65 <script src="advanced_page.js"></script> | 66 <script src="advanced_page.js"></script> |
| 66 </dom-module> | 67 </dom-module> |
| OLD | NEW |