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

Unified Diff: chrome/browser/renderer_host/resource_message_filter.cc

Issue 5680007: Make IndexedDBDispatcherHost be a message filter and move its messages into a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years 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: chrome/browser/renderer_host/resource_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/resource_message_filter.cc (revision 68877)
+++ chrome/browser/renderer_host/resource_message_filter.cc (working copy)
@@ -28,7 +28,6 @@
#include "chrome/browser/gpu_process_host.h"
#include "chrome/browser/host_zoom_map.h"
#include "chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h"
-#include "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h"
#include "chrome/browser/metrics/histogram_synchronizer.h"
#include "chrome/browser/mime_registry_dispatcher.h"
#include "chrome/browser/nacl_host/nacl_process_host.h"
@@ -257,8 +256,6 @@
render_widget_helper_(render_widget_helper),
ALLOW_THIS_IN_INITIALIZER_LIST(dom_storage_dispatcher_host_(
new DOMStorageDispatcherHost(this, profile->GetWebKitContext()))),
- ALLOW_THIS_IN_INITIALIZER_LIST(indexed_db_dispatcher_host_(
- new IndexedDBDispatcherHost(this, profile))),
ALLOW_THIS_IN_INITIALIZER_LIST(db_dispatcher_host_(
new DatabaseDispatcherHost(profile->GetDatabaseTracker(), this,
profile->GetHostContentSettingsMap()))),
@@ -309,9 +306,6 @@
// Tell the DOM Storage dispatcher host to stop sending messages via us.
dom_storage_dispatcher_host_->Shutdown();
- // Tell the Indexed DB dispatcher host to stop sending messages via us.
- indexed_db_dispatcher_host_->Shutdown();
-
// Shut down the database dispatcher host.
db_dispatcher_host_->Shutdown();
@@ -355,7 +349,6 @@
WorkerService::GetInstance()->Initialize(resource_dispatcher_host_);
dom_storage_dispatcher_host_->Init(id(), handle());
- indexed_db_dispatcher_host_->Init(id(), handle());
db_dispatcher_host_->Init(handle());
file_system_dispatcher_host_->Init(handle());
file_utilities_dispatcher_host_->Init(handle());
@@ -384,7 +377,6 @@
bool handled =
resource_dispatcher_host_->OnMessageReceived(msg, this, &msg_is_ok) ||
dom_storage_dispatcher_host_->OnMessageReceived(msg, &msg_is_ok) ||
- indexed_db_dispatcher_host_->OnMessageReceived(msg) ||
db_dispatcher_host_->OnMessageReceived(msg, &msg_is_ok) ||
mp_dispatcher->OnMessageReceived(
msg, this, next_route_id_callback(), &msg_is_ok) ||

Powered by Google App Engine
This is Rietveld 408576698