Index: content/browser/renderer_host/render_view_host_impl.cc |
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc |
index 18eab7b053552091c5d78f394b073275a3b5c7ef..59fc6b24ce65165fcd245c20b8c9bf78cc90a17f 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -55,7 +55,6 @@ |
#include "content/public/browser/browser_context.h" |
#include "content/public/browser/browser_message_filter.h" |
#include "content/public/browser/content_browser_client.h" |
-#include "content/public/browser/dom_operation_notification_details.h" |
#include "content/public/browser/native_web_keyboard_event.h" |
#include "content/public/browser/notification_details.h" |
#include "content/public/browser/notification_service.h" |
@@ -1301,8 +1300,6 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) { |
IPC_MESSAGE_HANDLER(ViewHostMsg_RunFileChooser, OnRunFileChooser) |
IPC_MESSAGE_HANDLER(ViewHostMsg_DidAccessInitialDocument, |
OnDidAccessInitialDocument) |
- IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse, |
- OnDomOperationResponse) |
IPC_MESSAGE_HANDLER(AccessibilityHostMsg_Events, OnAccessibilityEvents) |
IPC_MESSAGE_HANDLER(AccessibilityHostMsg_LocationChanges, |
OnAccessibilityLocationChanges) |
@@ -2191,15 +2188,6 @@ void RenderViewHostImpl::OnDidAccessInitialDocument() { |
delegate_->DidAccessInitialDocument(); |
} |
-void RenderViewHostImpl::OnDomOperationResponse( |
nasko
2014/02/11 17:32:33
Remove the method from the header file as well.
mkosiba (inactive)
2014/02/14 15:04:41
Done.
|
- const std::string& json_string, int automation_id) { |
- DomOperationNotificationDetails details(json_string, automation_id); |
- NotificationService::current()->Notify( |
- NOTIFICATION_DOM_OPERATION_RESPONSE, |
- Source<RenderViewHost>(this), |
- Details<DomOperationNotificationDetails>(&details)); |
-} |
- |
void RenderViewHostImpl::OnFocusedNodeTouched(bool editable) { |
#if defined(OS_WIN) |
if (editable) { |