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"> |
11 <link rel="import" href="chrome://md-settings/date_time_page/date_time_page.html "> | 11 <link rel="import" href="chrome://md-settings/date_time_page/date_time_page.html "> |
12 </if> | 12 </if> |
13 | 13 |
14 <dom-module id="cr-settings-advanced-page"> | 14 <dom-module id="cr-settings-advanced-page"> |
15 <template> | 15 <template> |
16 <if expr="chromeos"> | 16 <if expr="chromeos"> |
17 <cr-settings-section i18n-values="page-title:dateTimePageTitle" | 17 <cr-settings-section i18n-values="page-title:dateTimePageTitle" |
18 expand-container="{{expandContainer}}" | 18 expand-container="{{expandContainer}}" |
19 current-route="[[currentRoute]]" section="dateTime"> | 19 current-route="[[currentRoute]]" section="dateTime"> |
20 <cr-settings-date-time-page prefs="{{prefs}}"> | 20 <cr-settings-date-time-page prefs="{{prefs}}"> |
21 </cr-settings-date-time-page> | 21 </cr-settings-date-time-page> |
22 </cr-settings-section> | 22 </cr-settings-section> |
23 </if> | 23 </if> |
24 <cr-settings-section i18n-values="page-title:siteSettingsLocation" | 24 <cr-settings-section i18n-values="page-title:siteSettingsLocation" |
25 expand-container="{{expandContainer}}" | 25 expand-container="{{expandContainer}}" |
26 current-route="[[currentRoute]]" section="location"> | 26 current-route="[[currentRoute]]" section="location"> |
27 <cr-settings-location-page prefs="{{prefs}}"> | 27 <cr-settings-location-page prefs="{{prefs}}" |
Dan Beam
2015/10/10 01:27:39
why would a location-page need to know that it's c
Finnur
2015/10/15 15:46:32
In email and in the CL description (a reference I'
| |
28 category="[[contentSettingsTypes.GEOLOCATION]]" | |
29 categories="[[contentSettingsTypes]]"> | |
28 </cr-settings-location-page> | 30 </cr-settings-location-page> |
29 </cr-settings-section> | 31 </cr-settings-section> |
30 | 32 |
31 <cr-settings-section i18n-values="page-title:privacyPageTitle" | 33 <cr-settings-section i18n-values="page-title:privacyPageTitle" |
32 expand-container="{{expandContainer}}" | 34 expand-container="{{expandContainer}}" |
33 current-route="[[currentRoute]]" section="privacy"> | 35 current-route="[[currentRoute]]" section="privacy"> |
34 <cr-settings-privacy-page prefs="{{prefs}}" | 36 <cr-settings-privacy-page prefs="{{prefs}}" |
35 current-route="{{currentRoute}}"> | 37 current-route="{{currentRoute}}"> |
36 </cr-settings-privacy-page> | 38 </cr-settings-privacy-page> |
37 </cr-settings-section> | 39 </cr-settings-section> |
(...skipping 20 matching lines...) Expand all Loading... | |
58 </cr-settings-section> | 60 </cr-settings-section> |
59 | 61 |
60 <cr-settings-section i18n-values="page-title:syncPageTitle" | 62 <cr-settings-section i18n-values="page-title:syncPageTitle" |
61 expand-container="{{expandContainer}}" | 63 expand-container="{{expandContainer}}" |
62 current-route="[[currentRoute]]" section="sync"> | 64 current-route="[[currentRoute]]" section="sync"> |
63 <cr-settings-sync-page></cr-settings-sync-page> | 65 <cr-settings-sync-page></cr-settings-sync-page> |
64 </cr-settings-section> | 66 </cr-settings-section> |
65 </template> | 67 </template> |
66 <script src="advanced_page.js"></script> | 68 <script src="advanced_page.js"></script> |
67 </dom-module> | 69 </dom-module> |
OLD | NEW |