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

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

Issue 2772753002: Change FrameLoadTypeReload to take FrameLoadTypeReloadMainResource's behavior (Closed)
Patch Set: remove Reload Created 3 years, 9 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/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();
}

Powered by Google App Engine
This is Rietveld 408576698