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

Unified Diff: Source/core/inspector/InspectorResourceAgent.cpp

Issue 318673002: Use the ReloadBypassingCache policy (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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: Source/core/inspector/InspectorResourceAgent.cpp
diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp
index 8c1268d825c3d6777b51961700f814e9ea5a9d15..34181c6cbfb154c14d71917dc92664c547fd7542 100644
--- a/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/Source/core/inspector/InspectorResourceAgent.cpp
@@ -315,11 +315,8 @@ void InspectorResourceAgent::willSendRequest(unsigned long identifier, DocumentL
request.setReportLoadTiming(true);
request.setReportRawHeaders(true);
- if (m_state->getBoolean(ResourceAgentState::cacheDisabled)) {
- request.setHTTPHeaderField("Pragma", "no-cache");
- request.setCachePolicy(ReloadIgnoringCacheData);
- request.setHTTPHeaderField("Cache-Control", "no-cache");
- }
+ if (m_state->getBoolean(ResourceAgentState::cacheDisabled))
+ request.setCachePolicy(ReloadBypassingCache);
String frameId = m_pageAgent->frameId(loader->frame());

Powered by Google App Engine
This is Rietveld 408576698