| 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 3d03cad805a757e96b21ff8a7e2ab7416b5b8598..81e70712aa4f1a83e4b755c430b9e8f30f2fe915 100644
 | 
| --- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
 | 
| +++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
 | 
| @@ -596,6 +596,12 @@ WebString WebDevToolsAgentImpl::evaluateInWebInspectorOverlay(
 | 
|    return m_overlay->evaluateInOverlayForTest(script);
 | 
|  }
 | 
|  
 | 
| +bool WebDevToolsAgentImpl::cacheDisabled() {
 | 
| +  if (!m_networkAgent)
 | 
| +    return false;
 | 
| +  return m_networkAgent->cacheDisabled();
 | 
| +}
 | 
| +
 | 
|  void WebDevToolsAgentImpl::flushProtocolNotifications() {
 | 
|    if (m_session)
 | 
|      m_session->flushProtocolNotifications();
 | 
| 
 |