Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(800)

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp

Issue 2611183007: PlzNavigate: Fix for the http/tests/inspector/resource-har-conversion.html layout test failure. (Closed)
Patch Set: Fix line endings Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « third_party/WebKit/Source/web/WebDevToolsAgentImpl.h ('k') | third_party/WebKit/public/web/WebDevToolsAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698