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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2025683003: First experimental implementation of the Clear-Site-Data header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix ListValue iteration. Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_content_browser_client.cc
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
index c279e1a2163b629b07dd3f3f503df06109cc352d..2aeb4cb7e679ae0e1c39c8aab604e48b709df56d 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -35,6 +35,8 @@
#include "chrome/browser/browsing_data/browsing_data_helper.h"
#include "chrome/browser/browsing_data/browsing_data_remover.h"
#include "chrome/browser/browsing_data/browsing_data_remover_factory.h"
+#include "chrome/browser/browsing_data/origin_filter_builder.h"
+#include "chrome/browser/browsing_data/registrable_domain_filter_builder.h"
#include "chrome/browser/character_encoding.h"
#include "chrome/browser/chrome_content_browser_client_parts.h"
#include "chrome/browser/chrome_net_benchmarking_message_filter.h"
@@ -164,6 +166,7 @@
#include "device/usb/public/interfaces/device_manager.mojom.h"
#include "gin/v8_initializer.h"
#include "net/base/mime_util.h"
+#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
#include "net/cookies/canonical_cookie.h"
#include "net/cookies/cookie_options.h"
#include "net/ssl/ssl_cert_request_info.h"
@@ -2492,6 +2495,66 @@ void ChromeContentBrowserClient::ClearCookies(RenderFrameHost* rfh) {
BrowsingDataHelper::UNPROTECTED_WEB);
}
+void ChromeContentBrowserClient::ClearSiteData(
+ content::BrowserContext* browser_context, const url::Origin& origin,
+ bool remove_cookies, bool remove_storage, bool remove_cache) {
+ BrowsingDataRemover* remover =
+ BrowsingDataRemoverFactory::GetForBrowserContext(
+ Profile::FromBrowserContext(browser_context));
+
+ // Cookies and channel IDs are scoped to eTLD+1 and should be deleted
+ // in this scope.
+ if (remove_storage || remove_cache) {
Mike West 2016/06/02 07:00:08 This should be `remove_cookies`, right? Actually,
msramek 2016/06/14 20:12:07 Sorry, I've been rewriting this a few times, appar
+ std::string domain = GetDomainAndRegistry(
+ origin.host(),
+ net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
+
+ // TODO(msramek): What about origins such as http://localhost:80?
+ if (domain.empty())
+ return;
+
+ int remove_mask = 0;
+ if (remove_cookies)
+ remove_mask |= BrowsingDataRemover::REMOVE_COOKIES;
+ if (remove_storage)
+ remove_mask |= BrowsingDataRemover::REMOVE_CHANNEL_IDS;
Mike West 2016/06/02 07:00:08 1. Can you file a bug against the spec (or send a
msramek 2016/06/14 20:12:07 BrowsingDataRemover treats them as a part of site
Mike West 2016/06/20 07:57:37 Cookies are part of site data too. :)
+
+ RegistrableDomainFilterBuilder domain_filter_builder(
+ BrowsingDataFilterBuilder::WHITELIST);
+ domain_filter_builder.AddRegisterableDomain(domain);
+
+ remover->RemoveWithFilter(
Mike West 2016/06/02 07:00:08 If folks want to clear both cookies and DOM storag
msramek 2016/06/14 20:12:07 Not necessarily. BDR is full of if()-s that are on
+ BrowsingDataRemover::Period(
+ BrowsingDataRemover::TimePeriod::EVERYTHING),
+ remove_mask,
+ BrowsingDataHelper::UNPROTECTED_WEB,
Mike West 2016/06/02 07:00:08 Hrm. I forget what we actually used PROTECTED_WEB
msramek 2016/06/14 20:12:07 Heh, good point. In my mind, I am still mapping th
+ domain_filter_builder);
+ }
+
+ // Delete origin-scoped data.
+ if (remove_storage || remove_cache) {
+ OriginFilterBuilder origin_filter_builder(
+ BrowsingDataFilterBuilder::WHITELIST);
+ origin_filter_builder.AddOrigin(origin);
+
+ int remove_mask = 0;
+ if (remove_storage) {
+ remove_mask |= BrowsingDataRemover::REMOVE_SITE_DATA &
+ ~BrowsingDataRemover::REMOVE_COOKIES &
+ ~BrowsingDataRemover::REMOVE_CHANNEL_IDS;
+ }
+ if (remove_cache)
+ remove_mask |= BrowsingDataRemover::REMOVE_CACHE;
+
+ remover->RemoveWithFilter(
+ BrowsingDataRemover::Period(
+ BrowsingDataRemover::TimePeriod::EVERYTHING),
+ remove_mask,
+ BrowsingDataHelper::UNPROTECTED_WEB,
+ origin_filter_builder);
+ }
+}
+
base::FilePath ChromeContentBrowserClient::GetDefaultDownloadDirectory() {
return DownloadPrefs::GetDefaultDownloadDirectory();
}

Powered by Google App Engine
This is Rietveld 408576698