| Index: trunk/src/content/browser/renderer_host/render_view_host_impl.cc
|
| ===================================================================
|
| --- trunk/src/content/browser/renderer_host/render_view_host_impl.cc (revision 195969)
|
| +++ trunk/src/content/browser/renderer_host/render_view_host_impl.cc (working copy)
|
| @@ -167,7 +167,6 @@
|
| pending_request_id_(-1),
|
| navigations_suspended_(false),
|
| suspended_nav_params_(NULL),
|
| - has_accessed_initial_document_(false),
|
| is_swapped_out_(swapped_out),
|
| is_subframe_(false),
|
| run_modal_reply_msg_(NULL),
|
| @@ -988,8 +987,6 @@
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ShowPopup, OnShowPopup)
|
| #endif
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_RunFileChooser, OnRunFileChooser)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_DidAccessInitialDocument,
|
| - OnDidAccessInitialDocument)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_DomOperationResponse,
|
| OnDomOperationResponse)
|
| IPC_MESSAGE_HANDLER(AccessibilityHostMsg_Notifications,
|
| @@ -1206,10 +1203,6 @@
|
| }
|
| }
|
|
|
| - // Now that something has committed, we don't need to track whether the
|
| - // initial page has been accessed.
|
| - has_accessed_initial_document_ = false;
|
| -
|
| ChildProcessSecurityPolicyImpl* policy =
|
| ChildProcessSecurityPolicyImpl::GetInstance();
|
| // Without this check, an evil renderer can trick the browser into creating
|
| @@ -1985,11 +1978,6 @@
|
| delegate_->RunFileChooser(this, params);
|
| }
|
|
|
| -void RenderViewHostImpl::OnDidAccessInitialDocument() {
|
| - has_accessed_initial_document_ = true;
|
| - delegate_->DidAccessInitialDocument();
|
| -}
|
| -
|
| void RenderViewHostImpl::OnDomOperationResponse(
|
| const std::string& json_string, int automation_id) {
|
| DomOperationNotificationDetails details(json_string, automation_id);
|
|
|