| 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 d48a82b1ae30a39acf5173fde91525eb292fa2f1..c92564f33cfa8bfa1342b60bc5c08718a4800951 100644 | 
| --- a/content/browser/renderer_host/render_view_host_impl.cc | 
| +++ b/content/browser/renderer_host/render_view_host_impl.cc | 
| @@ -165,6 +165,7 @@ RenderViewHostImpl::RenderViewHostImpl( | 
| pending_request_id_(-1), | 
| navigations_suspended_(false), | 
| suspended_nav_message_(NULL), | 
| +      has_accessed_initial_document_(false), | 
| is_swapped_out_(swapped_out), | 
| is_subframe_(false), | 
| run_modal_reply_msg_(NULL), | 
| @@ -991,6 +992,8 @@ bool RenderViewHostImpl::OnMessageReceived(const IPC::Message& msg) { | 
| 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, | 
| @@ -1208,6 +1211,10 @@ void RenderViewHostImpl::OnNavigate(const IPC::Message& msg) { | 
| } | 
| } | 
|  | 
| +  // 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 | 
| @@ -2003,6 +2010,11 @@ void RenderViewHostImpl::OnRunFileChooser(const FileChooserParams& params) { | 
| 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); | 
|  |