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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp

Issue 2611183007: PlzNavigate: Fix for the http/tests/inspector/resource-har-conversion.html layout test failure. (Closed)
Patch Set: Rebaseline enable-browser-side-navigation 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/core/inspector/InspectorNetworkAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
index d0a5abc9d1a71af13d059d74f18a060abc84bdd0..078dd814c8c48461c104ad97c5651dce72c73846 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
@@ -1512,6 +1512,10 @@ bool InspectorNetworkAgent::fetchResourceContent(Document* document,
return false;
}
+bool InspectorNetworkAgent::cacheDisabled() {
+ return m_state->booleanProperty(NetworkAgentState::cacheDisabled, false);
pfeldman 2017/01/11 00:21:52 m_state->booleanProperty(NetworkAgentState::networ
ananta 2017/01/11 00:47:29 Done.
+}
+
void InspectorNetworkAgent::removeFinishedReplayXHRFired(TimerBase*) {
m_replayXHRsToBeDeleted.clear();
}

Powered by Google App Engine
This is Rietveld 408576698