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

Unified Diff: content/renderer/render_view_impl.cc

Issue 8353025: External autofill delegates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Carnitasify Created 9 years, 2 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/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index d3dfc1fe4493f09bff42d1f8dcd7b8653760042b..2b8a4ba1ef7a1ea9fa7edce4197be88d707c56e8 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -24,6 +24,7 @@
#include "base/sys_string_conversions.h"
#include "base/time.h"
#include "base/utf_string_conversions.h"
+#include "content/common/autofill_messages.h"
#include "content/common/appcache/appcache_dispatcher.h"
#include "content/common/clipboard_messages.h"
#include "content/common/content_constants.h"
@@ -46,6 +47,7 @@
#include "content/public/renderer/navigation_state.h"
#include "content/public/renderer/render_view_observer.h"
#include "content/public/renderer/render_view_visitor.h"
+#include "content/renderer/autofill_dispatcher.h"
#include "content/renderer/device_orientation_dispatcher.h"
#include "content/renderer/devtools_agent.h"
#include "content/renderer/external_popup_menu.h"
@@ -339,6 +341,7 @@ RenderViewImpl::RenderViewImpl(gfx::NativeViewId parent_hwnd,
speech_input_dispatcher_(NULL),
device_orientation_dispatcher_(NULL),
p2p_socket_dispatcher_(NULL),
+ autofill_dispatcher_(NULL),
devtools_agent_(NULL),
renderer_accessibility_(NULL),
session_storage_namespace_id_(session_storage_namespace_id),
@@ -360,6 +363,7 @@ RenderViewImpl::RenderViewImpl(gfx::NativeViewId parent_hwnd,
intents_dispatcher_ = new IntentsDispatcher(this);
notification_provider_ = new NotificationProvider(this);
+ autofill_dispatcher_ = new AutofillDispatcher(this);
RenderThread::Get()->AddRoute(routing_id_, this);
// Take a reference on behalf of the RenderThread. This will be balanced
« content/renderer/autofill_dispatcher.cc ('K') | « content/renderer/render_view_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698