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

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: changed the test to use URLRequestMockHTTPJob Created 4 years, 8 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 b4451f7fbcf7008db01ab7d00bf6a9d6e351e643..c2088f7b1f150f1acc480ddba1e9f8499c3b9343 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
@@ -280,6 +280,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