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

Unified Diff: components/autofill/content/browser/content_autofill_driver_factory.cc

Issue 2007473004: [Autofill] Migrate ContentAutofillDriver<-->AutofillAgent IPCs to mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 5 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: components/autofill/content/browser/content_autofill_driver_factory.cc
diff --git a/components/autofill/content/browser/content_autofill_driver_factory.cc b/components/autofill/content/browser/content_autofill_driver_factory.cc
index 3e614dcb94aa25f97da20c43108472d90b863315..7cc116404d1dcb7fb5731ddbc684fe4fecdca1f1 100644
--- a/components/autofill/content/browser/content_autofill_driver_factory.cc
+++ b/components/autofill/content/browser/content_autofill_driver_factory.cc
@@ -16,7 +16,6 @@
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
-#include "ipc/ipc_message_macros.h"
namespace autofill {
@@ -95,12 +94,6 @@ ContentAutofillDriver* ContentAutofillDriverFactory::DriverForFrame(
return mapping == frame_driver_map_.end() ? nullptr : mapping->second.get();
}
-bool ContentAutofillDriverFactory::OnMessageReceived(
- const IPC::Message& message,
- content::RenderFrameHost* render_frame_host) {
- return frame_driver_map_[render_frame_host]->HandleMessage(message);
-}
-
void ContentAutofillDriverFactory::RenderFrameCreated(
content::RenderFrameHost* render_frame_host) {
auto insertion_result =

Powered by Google App Engine
This is Rietveld 408576698