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

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

Issue 10600009: Support partitioning of storage contexts based on render_id. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix comments Created 8 years, 6 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.cc
diff --git a/content/public/browser/content_browser_client.cc b/content/public/browser/content_browser_client.cc
index 6c28657ca083cdb3142a728f8e16cc9e0c18da82..9da026d3bbfba4ea9ac1e4d0a5256c5e4b2efd75 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -147,6 +147,12 @@ net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL(
return NULL;
}
+std::string ContentBrowserClient::GetStoragePartitionForChildProcess(
+ content::BrowserContext* browser_context,
+ int child_process_id) {
+ return std::string();
+}
+
MediaObserver* ContentBrowserClient::GetMediaObserver() {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698