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

Unified Diff: third_party/WebKit/public/platform/WebURLLoadTiming.h

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/public/platform/WebURLLoadTiming.h
diff --git a/third_party/WebKit/public/platform/WebURLLoadTiming.h b/third_party/WebKit/public/platform/WebURLLoadTiming.h
index 8193c21b1e35c52084b822d72e93d81a9ef8149f..fc48965f7e31d6876237be23ecf55d9a0cb402fa 100644
--- a/third_party/WebKit/public/platform/WebURLLoadTiming.h
+++ b/third_party/WebKit/public/platform/WebURLLoadTiming.h
@@ -98,6 +98,12 @@ public:
BLINK_PLATFORM_EXPORT double sslEnd() const;
BLINK_PLATFORM_EXPORT void setSSLEnd(double);
+ BLINK_PLATFORM_EXPORT double pushStart() const;
+ BLINK_PLATFORM_EXPORT void setPushStart(double);
+
+ BLINK_PLATFORM_EXPORT double pushEnd() const;
+ BLINK_PLATFORM_EXPORT void setPushEnd(double);
+
#if INSIDE_BLINK
BLINK_PLATFORM_EXPORT WebURLLoadTiming(const WTF::PassRefPtr<ResourceLoadTiming>&);
BLINK_PLATFORM_EXPORT WebURLLoadTiming& operator=(const WTF::PassRefPtr<ResourceLoadTiming>&);

Powered by Google App Engine
This is Rietveld 408576698