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

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

Issue 2115833003: Site Settings Desktop: Implement the cookies list and details dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 4 years, 5 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
3 <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/neon-animation/neon-ani matable.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html"> 5 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html">
6 <link rel="import" href="/controls/settings_checkbox.html"> 6 <link rel="import" href="/controls/settings_checkbox.html">
7 <link rel="import" href="/settings_main/settings_main_rendered.html"> 7 <link rel="import" href="/settings_main/settings_main_rendered.html">
8 <link rel="import" href="/settings_page/settings_animated_pages.html"> 8 <link rel="import" href="/settings_page/settings_animated_pages.html">
9 <link rel="import" href="/settings_page/settings_subpage.html"> 9 <link rel="import" href="/settings_page/settings_subpage.html">
10 <link rel="import" href="/settings_shared_css.html"> 10 <link rel="import" href="/settings_shared_css.html">
11 <link rel="import" href="/site_settings/all_sites.html"> 11 <link rel="import" href="/site_settings/all_sites.html">
12 <link rel="import" href="/site_settings/constants.html"> 12 <link rel="import" href="/site_settings/constants.html">
13 <link rel="import" href="/site_settings/media_picker.html"> 13 <link rel="import" href="/site_settings/media_picker.html">
14 <link rel="import" href="/site_settings/site_data.html">
14 <link rel="import" href="/site_settings_page/site_settings_page.html"> 15 <link rel="import" href="/site_settings_page/site_settings_page.html">
15 16
16 <if expr="use_nss_certs"> 17 <if expr="use_nss_certs">
17 <link rel="import" href="/certificate_manager_page/certificate_manager_page.html "> 18 <link rel="import" href="/certificate_manager_page/certificate_manager_page.html ">
18 </if> 19 </if>
19 <if expr="is_win or is_macosx"> 20 <if expr="is_win or is_macosx">
20 <link rel="import" href="/privacy_page/privacy_page_browser_proxy.html"> 21 <link rel="import" href="/privacy_page/privacy_page_browser_proxy.html">
21 </if> 22 </if>
22 23
23 <dom-module id="settings-privacy-page"> 24 <dom-module id="settings-privacy-page">
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 selected-site="{{selectedSite}}" 163 selected-site="{{selectedSite}}"
163 current-route="{{currentRoute}}" 164 current-route="{{currentRoute}}"
164 category="{{ContentSettingsTypes.COOKIES}}"> 165 category="{{ContentSettingsTypes.COOKIES}}">
165 <div class="settings-box cookie-controls"> 166 <div class="settings-box cookie-controls">
166 <settings-checkbox class="start" 167 <settings-checkbox class="start"
167 label="$i18n{thirdPartyCookie}" 168 label="$i18n{thirdPartyCookie}"
168 sub-label="$i18n{thirdPartyCookieSublabel}" 169 sub-label="$i18n{thirdPartyCookieSublabel}"
169 pref="{{prefs.profile.block_third_party_cookies}}"> 170 pref="{{prefs.profile.block_third_party_cookies}}">
170 </settings-checkbox> 171 </settings-checkbox>
171 </div> 172 </div>
173 <site-data class="site-data"></site-data>
172 </site-settings-category> 174 </site-settings-category>
173 </settings-subpage> 175 </settings-subpage>
174 </template> 176 </template>
175 <template is="dom-if" name="site-settings-category-fullscreen"> 177 <template is="dom-if" name="site-settings-category-fullscreen">
176 <settings-subpage 178 <settings-subpage
177 page-title="$i18n{siteSettingsCategoryFullscreen}"> 179 page-title="$i18n{siteSettingsCategoryFullscreen}">
178 <site-settings-category 180 <site-settings-category
179 selected-site="{{selectedSite}}" 181 selected-site="{{selectedSite}}"
180 current-route="{{currentRoute}}" 182 current-route="{{currentRoute}}"
181 category="{{ContentSettingsTypes.FULLSCREEN}}"> 183 category="{{ContentSettingsTypes.FULLSCREEN}}">
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 <template is="dom-if" name="site-details"> 273 <template is="dom-if" name="site-details">
272 <settings-subpage 274 <settings-subpage
273 page-title="$i18n{siteSettingsSiteDetailsPageTitle}"> 275 page-title="$i18n{siteSettingsSiteDetailsPageTitle}">
274 <site-details site="[[selectedSite]]"></site-details> 276 <site-details site="[[selectedSite]]"></site-details>
275 </settings-subpage> 277 </settings-subpage>
276 </template> 278 </template>
277 </settings-animated-pages> 279 </settings-animated-pages>
278 </template> 280 </template>
279 <script src="privacy_page.js"></script> 281 <script src="privacy_page.js"></script>
280 </dom-module> 282 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/settings_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698