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

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

Issue 23615009: Stub out initial NavigationController browser implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 d023fa8076c57025f1e0c83917a59ca2d668514d..64a4caa5bb0b54bea44ebe90723f596b0479f69d 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/navigation_controller/navigation_controller_context.h"
michaeln 2013/09/05 21:15:39 For the naming convention in chromium code, nav_co
alecflett 2013/09/05 22:24:57 I agree with shortening it - I struggled with this
+#include "content/browser/navigation_controller/navigation_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 NavigationControllerDispatcherHost(
+ storage_partition_impl_->GetNavigationControllerContext()));
if (IsGuest()) {
if (!g_browser_plugin_geolocation_context.Get().get()) {
g_browser_plugin_geolocation_context.Get() =

Powered by Google App Engine
This is Rietveld 408576698