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

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

Issue 1828203005: Expose SPDY pushes in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/InspectorResourceAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
index bf2cc3575ed7460bbdb9c7fd61005d1f81799c2a..7c6e978ab8391f91715bcb7f1ab26fb16f1d4d85 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
@@ -281,6 +281,8 @@ static PassOwnPtr<protocol::Network::ResourceTiming> buildObjectForTiming(const
.setSendStart(timing.calculateMillisecondDelta(timing.sendStart()))
.setSendEnd(timing.calculateMillisecondDelta(timing.sendEnd()))
.setReceiveHeadersEnd(timing.calculateMillisecondDelta(timing.receiveHeadersEnd()))
+ .setPushStart(timing.pushStart())
+ .setPushEnd(timing.pushEnd())
.build();
}

Powered by Google App Engine
This is Rietveld 408576698