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 18188d2ac8334db8fe7fa7e4167f4e503f9291d6..19cd70c0eb9c6f7a51790a716f2cca1fc5d775cf 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -63,6 +63,8 @@ |
#include "content/browser/loader/resource_scheduler_filter.h" |
#include "content/browser/media/media_internals.h" |
#include "content/browser/mime_registry_message_filter.h" |
+#include "content/browser/nav_controller/nav_controller_context.h" |
+#include "content/browser/nav_controller/nav_controller_dispatcher_host.h" |
#include "content/browser/plugin_service_impl.h" |
#include "content/browser/profiler_message_filter.h" |
#include "content/browser/quota_dispatcher_host.h" |
@@ -598,6 +600,8 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
channel_->AddFilter(new IndexedDBDispatcherHost( |
GetID(), |
storage_partition_impl_->GetIndexedDBContext())); |
+ channel_->AddFilter(new NavControllerDispatcherHost( |
+ storage_partition_impl_->GetNavControllerContext())); |
if (IsGuest()) { |
if (!g_browser_plugin_geolocation_context.Get().get()) { |
g_browser_plugin_geolocation_context.Get() = |