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

Unified Diff: content/browser/browser_context.cc

Issue 10909182: Make FileSystemContext respect StoragePartitions. filesystem:// urls will be properly isolated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch unittest fix from michael Created 8 years, 3 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/browser/browser_context.cc
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
index 8e4c9b750ae384cd77709020283f417c1613e366..e1b9de6fcda2e68cab7899b44d0e7b47e692877f 100644
--- a/content/browser/browser_context.cc
+++ b/content/browser/browser_context.cc
@@ -110,13 +110,6 @@ IndexedDBContext* BrowserContext::GetIndexedDBContext(
return GetDefaultStoragePartition(browser_context)->GetIndexedDBContext();
}
-fileapi::FileSystemContext* BrowserContext::GetFileSystemContext(
- BrowserContext* browser_context) {
- // TODO(ajwong): Change this API to require a SiteInstance instead of
- // using GetDefaultStoragePartition().
- return GetDefaultStoragePartition(browser_context)->GetFileSystemContext();
-}
-
StoragePartition* BrowserContext::GetStoragePartition(
BrowserContext* browser_context,
SiteInstance* site_instance) {

Powered by Google App Engine
This is Rietveld 408576698