| Index: third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp | 
| diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp | 
| index 1a3b3af31b2287474533ddafe74685e1c5a03f54..2d1a7c0096454177b021c727ede7331c80771dda 100644 | 
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp | 
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp | 
| @@ -483,6 +483,12 @@ void WebDevToolsAgentImpl::didCommitLoadForLocalFrame(LocalFrame* frame) | 
| m_session->didCommitLoadForLocalFrame(frame); | 
| } | 
|  | 
| +void WebDevToolsAgentImpl::didStartProvisionalLoad(LocalFrame* frame) | 
| +{ | 
| +    if (m_session && m_inspectedFrames->root() == frame) | 
| +        m_session->v8Session()->resume(); | 
| +} | 
| + | 
| bool WebDevToolsAgentImpl::screencastEnabled() | 
| { | 
| return m_pageAgent && m_pageAgent->screencastEnabled(); | 
|  |