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

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

Issue 11234032: Webview tag creation should be using storage partitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disabling session storage test for isolated apps. 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
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/storage_partition.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3ae2a8eea5ecd9f042b6b611d6d2fa0c013f4a01..87d2f347185e221e30aedbd13211348bee2a11e6 100644
--- a/content/public/browser/content_browser_client.cc
+++ b/content/public/browser/content_browser_client.cc
@@ -160,12 +160,6 @@ net::URLRequestContext* ContentBrowserClient::OverrideRequestContextForURL(
return NULL;
}
-std::string ContentBrowserClient::GetStoragePartitionIdForChildProcess(
- BrowserContext* browser_context,
- int child_process_id) {
- return std::string();
-}
-
std::string ContentBrowserClient::GetStoragePartitionIdForSite(
BrowserContext* browser_context,
const GURL& site) {
@@ -180,6 +174,17 @@ bool ContentBrowserClient::IsValidStoragePartitionId(
return partition_id.empty();
}
+void ContentBrowserClient::GetStoragePartitionConfigForSite(
+ BrowserContext* browser_context,
+ const GURL& site,
+ std::string* partition_domain,
+ std::string* partition_name,
+ bool* in_memory) {
+ partition_domain->clear();
+ partition_name->clear();
+ *in_memory = false;
+}
+
MediaObserver* ContentBrowserClient::GetMediaObserver() {
return NULL;
}
« no previous file with comments | « content/public/browser/content_browser_client.h ('k') | content/public/browser/storage_partition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698