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

Unified Diff: third_party/WebKit/Source/platform/network/ResourceLoadTiming.h

Issue 1828203005: Expose SPDY pushes in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed tests 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/platform/network/ResourceLoadTiming.h
diff --git a/third_party/WebKit/Source/platform/network/ResourceLoadTiming.h b/third_party/WebKit/Source/platform/network/ResourceLoadTiming.h
index 9e0d613ca37517ad571065c7c921549b476f6f2b..834f18d5e3b4ad7ac9cdd9fd0dbc1e7ca39ad299 100644
--- a/third_party/WebKit/Source/platform/network/ResourceLoadTiming.h
+++ b/third_party/WebKit/Source/platform/network/ResourceLoadTiming.h
@@ -55,6 +55,8 @@ public:
void setReceiveHeadersEnd(double);
void setSslStart(double);
void setSslEnd(double);
+ void setPushStart(double);
+ void setPushEnd(double);
double dnsStart() const { return m_dnsStart; }
double requestTime() const { return m_requestTime; }
@@ -70,6 +72,8 @@ public:
double receiveHeadersEnd() const { return m_receiveHeadersEnd; }
double sslStart() const { return m_sslStart; }
double sslEnd() const { return m_sslEnd; }
+ double pushStart() const { return m_pushStart; }
+ double pushEnd() const { return m_pushEnd; }
double calculateMillisecondDelta(double) const;
@@ -97,6 +101,8 @@ private:
double m_receiveHeadersEnd;
double m_sslStart;
double m_sslEnd;
+ double m_pushStart;
+ double m_pushEnd;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698