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 074ebfa75a287d13827f37c6b9b60aec5e9148ba..df68cef32792d555db9a06a1af5d9ef17230d812 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -207,7 +207,6 @@ RenderViewHostImpl::RenderViewHostImpl( |
waiting_for_drag_context_response_(false), |
enabled_bindings_(0), |
navigations_suspended_(false), |
- has_accessed_initial_document_(false), |
main_frame_routing_id_(main_frame_routing_id), |
run_modal_reply_msg_(NULL), |
run_modal_opener_id_(MSG_ROUTING_NONE), |
@@ -1047,8 +1046,6 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) { |
IPC_MESSAGE_HANDLER(ViewHostMsg_HidePopup, OnHidePopup) |
#endif |
IPC_MESSAGE_HANDLER(ViewHostMsg_RunFileChooser, OnRunFileChooser) |
- IPC_MESSAGE_HANDLER(ViewHostMsg_DidAccessInitialDocument, |
- OnDidAccessInitialDocument) |
IPC_MESSAGE_HANDLER(AccessibilityHostMsg_Events, OnAccessibilityEvents) |
IPC_MESSAGE_HANDLER(AccessibilityHostMsg_LocationChanges, |
OnAccessibilityLocationChanges) |
@@ -1687,11 +1684,6 @@ void RenderViewHostImpl::OnRunFileChooser(const FileChooserParams& params) { |
delegate_->RunFileChooser(this, params); |
} |
-void RenderViewHostImpl::OnDidAccessInitialDocument() { |
- has_accessed_initial_document_ = true; |
- delegate_->DidAccessInitialDocument(); |
-} |
- |
void RenderViewHostImpl::OnFocusedNodeTouched(bool editable) { |
#if defined(OS_WIN) |
if (editable) { |