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

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

Issue 11362268: Implement the ability to obliterate a storage partition from disk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work around race on extension uninstall Created 8 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: content/public/browser/content_browser_client.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index 65374cf05e3e203a353ed0a2a13a9833d8f2b4d1..a583aff20805da54b16648773a24cb9293b57b0a 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -185,6 +185,18 @@ void ContentBrowserClient::GetStoragePartitionConfigForSite(
*in_memory = false;
}
+void ContentBrowserClient::ParseNonDefaultStoragePartitionConfig(
+ const GURL& site,
+ std::string* partition_domain,
+ std::string* partition_name,
+ bool* in_memory) {
+ // Default embedders only have a default partition so this code
+ // falls to that despite its name.
+ partition_domain->clear();
+ partition_name->clear();
+ *in_memory = false;
+}
+
MediaObserver* ContentBrowserClient::GetMediaObserver() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698