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

Unified Diff: content/browser/browser_context.cc

Issue 11366140: Fix on-disk structure for persistent storage in webview tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address Charlie's comments 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/browser/browser_context.cc
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
index 99905f8b3ba5602d265610036f5a55c4065f7c65..d8bc87e317698c9ec9f9b898e224bff9ccafc207 100644
--- a/content/browser/browser_context.cc
+++ b/content/browser/browser_context.cc
@@ -53,12 +53,6 @@ StoragePartition* GetStoragePartitionFromConfig(
if (browser_context->IsOffTheRecord())
in_memory = true;
- // TODO(nasko): Webview tags with named partitions will have both
- // partition_domain and partition_name set. In this case, mark them in-memory
- // until the on-disk storage code has landed. http://crbug.com/159464
- if (!partition_domain.empty() && !partition_name.empty())
- in_memory = true;
-
return partition_map->Get(partition_domain, partition_name, in_memory);
}
« no previous file with comments | « chrome/test/data/extensions/platform_apps/web_view_isolation/main.js ('k') | content/browser/storage_partition_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698