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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 10919307: Move IndexedDBContext into the StoragePartition and ensure isolation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: stupid lowercasing 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/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 24b7c73cf47560da11786f47ce94bdb74183388f..de3e1a54aaa5e000ee931229812a7077daa0ff3c 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -549,8 +549,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
GetID(),
storage_partition_impl_->GetDOMStorageContext()));
channel_->AddFilter(new IndexedDBDispatcherHost(GetID(),
- static_cast<IndexedDBContextImpl*>(
- BrowserContext::GetIndexedDBContext(browser_context))));
+ storage_partition_impl_->GetIndexedDBContext()));
Charlie Reis 2012/09/15 00:55:58 nit: wrong indent
awong 2012/09/15 01:19:37 Done.
channel_->AddFilter(GeolocationDispatcherHost::New(
GetID(), browser_context->GetGeolocationPermissionContext()));
gpu_message_filter_ = new GpuMessageFilter(GetID(), widget_helper_.get());

Powered by Google App Engine
This is Rietveld 408576698