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 = |