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

Unified Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 2450423002: [MD settings] cookie and site data from dialog to subpage (Closed)
Patch Set: review nit Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/privacy_page/privacy_page.html
diff --git a/chrome/browser/resources/settings/privacy_page/privacy_page.html b/chrome/browser/resources/settings/privacy_page/privacy_page.html
index 3394389ef8d4f1939017bb9707e243bd69cc461e..5344cc5badb1b362cc40f38c08f1d48d030117e7 100644
--- a/chrome/browser/resources/settings/privacy_page/privacy_page.html
+++ b/chrome/browser/resources/settings/privacy_page/privacy_page.html
@@ -15,6 +15,7 @@
<link rel="import" href="/site_settings/constants.html">
<link rel="import" href="/site_settings/media_picker.html">
<link rel="import" href="/site_settings/protocol_handlers.html">
+<link rel="import" href="/site_settings/site_data_details_subpage.html">
<link rel="import" href="/site_settings/site_settings_category.html">
<link rel="import" href="/site_settings/usb_devices.html">
<link rel="import" href="/site_settings/site_data.html">
@@ -351,7 +352,18 @@
<site-details site="[[selectedSite]]"></site-details>
</settings-subpage>
</template>
+ <template is="dom-if" route-path="/cookies/detail"
+ no-search>
+ <settings-subpage page-title="[[pageTitle]]">
+ <paper-button class="subpage-title-extra"
+ on-tap="onRemoveAllCookiesFromSite_">
+ $i18n{siteSettingsCookieRemoveAll}
+ </paper-button>
+ <site-data-details-subpage page-title="{{pageTitle}}">
+ </site-data-details-subpage>
+ </settings-subpage>
+ </template>
</settings-animated-pages>
</template>
<script src="privacy_page.js"></script>
-</dom-module>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698