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

Unified Diff: third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h

Issue 2962113002: Updates to Server-Timing in accordance with with spec changes (Closed)
Patch Set: Created 3 years, 6 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/timing/PerformanceNavigationTiming.h
diff --git a/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h b/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h
index b79becd5db6427560eecc58cf524321514ea2bfe..88db095461c5f5c69dd4504fbcf042dc7a88d12e 100644
--- a/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h
+++ b/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h
@@ -22,6 +22,9 @@ class ExecutionContext;
class ResourceTimingInfo;
class ResourceLoadTiming;
+using PerformanceServerTimingVector =
+ HeapVector<Member<PerformanceServerTiming>>;
Yoav Weiss 2017/06/29 06:57:33 Remove the definition from here
+
class CORE_EXPORT PerformanceNavigationTiming final
: public PerformanceResourceTiming,
public ContextClient {
@@ -32,7 +35,8 @@ class CORE_EXPORT PerformanceNavigationTiming final
public:
PerformanceNavigationTiming(LocalFrame*,
ResourceTimingInfo*,
- double time_origin);
+ double time_origin,
+ PerformanceServerTimingVector&);
// Attributes inheritted from PerformanceEntry.
DOMHighResTimeStamp duration() const override;

Powered by Google App Engine
This is Rietveld 408576698