Index: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp |
index eafc3d59655ecab8963c7645618d608443d95653..43b9d9c9ad9ce0d43134d8338b5c21d5990d9cbf 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp |
@@ -47,7 +47,8 @@ void InspectorTracingAgent::restore() { |
void InspectorTracingAgent::frameStartedLoading(LocalFrame* frame, |
FrameLoadType type) { |
- if (frame != m_inspectedFrames->root() || type != FrameLoadTypeReload) |
+ if (frame != m_inspectedFrames->root() || |
Takashi Toyoshima
2017/03/23 08:45:42
This change will cause a behavior change.
https:/
Takashi Toyoshima
2017/03/24 03:29:17
Resolved: https://codereview.chromium.org/27691530
|
+ type != FrameLoadTypeReloadMainResource) |
return; |
m_client->showReloadingBlanket(); |
} |