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

Unified Diff: content/public/browser/content_browser_client.h

Issue 2368923003: Support the Clear-Site-Data header on resource requests (Closed)
Patch Set: Addressed comments, added some debug outputs. Created 3 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: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index 0bb98c3783022082c6c4d2c8966d38065c14feed..f17e6ca03133a204ea668cbfffd45a5a5676dd6e 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -550,18 +550,6 @@ class CONTENT_EXPORT ContentBrowserClient {
// TODO(crbug.com/668114): Deprecated. Use BrowsingDataRemover instead.
virtual void ClearCookies(RenderFrameHost* rfh) {}
- // Clears |browser_context|'s data stored for the given |origin|.
- // The datatypes to be removed are specified by |remove_cookies|,
- // |remove_storage|, and |remove_cache|. Note that cookies should be removed
- // for the entire eTLD+1 of |origin|. Must call |callback| when finished.
- // TODO(crbug.com/668114): Depreacated. Use BrowsingDataRemover instead.
- virtual void ClearSiteData(content::BrowserContext* browser_context,
- const url::Origin& origin,
- bool remove_cookies,
- bool remove_storage,
- bool remove_cache,
- const base::Closure& callback) {}
-
// Returns the default download directory.
// This can be called on any thread.
virtual base::FilePath GetDefaultDownloadDirectory();

Powered by Google App Engine
This is Rietveld 408576698