Chromium Code Reviews| Index: third_party/WebKit/Source/core/timing/PerformanceBase.h |
| diff --git a/third_party/WebKit/Source/core/timing/PerformanceBase.h b/third_party/WebKit/Source/core/timing/PerformanceBase.h |
| index ff36a6a3212ed1df661c166637ca66358b665b7b..ef7a81483ac40ee5eee627fd3f407c12f9b649a1 100644 |
| --- a/third_party/WebKit/Source/core/timing/PerformanceBase.h |
| +++ b/third_party/WebKit/Source/core/timing/PerformanceBase.h |
| @@ -39,6 +39,7 @@ |
| #include "core/timing/PerformanceEntry.h" |
| #include "core/timing/PerformanceNavigationTiming.h" |
| #include "core/timing/PerformancePaintTiming.h" |
| +#include "core/timing/PerformanceServerTiming.h" |
|
Yoav Weiss
2017/06/29 16:23:21
I think you no longer need that include
|
| #include "platform/Timer.h" |
| #include "platform/heap/Handle.h" |
| #include "platform/wtf/Forward.h" |
| @@ -112,12 +113,6 @@ class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { |
| void AddResourceTiming(const ResourceTimingInfo&); |
| - enum class ShouldAddToBuffer { |
| - Always, |
| - Never, |
| - }; |
| - void AddServerTiming(const ResourceResponse&, ShouldAddToBuffer); |
| - |
| void NotifyNavigationTimingToObservers(); |
| void AddFirstPaintTiming(double start_time); |
| @@ -179,7 +174,6 @@ class CORE_EXPORT PerformanceBase : public EventTargetWithInlineData { |
| unsigned frame_timing_buffer_size_; |
| PerformanceEntryVector resource_timing_buffer_; |
| unsigned resource_timing_buffer_size_; |
| - PerformanceEntryVector server_timing_buffer_; |
| Member<PerformanceEntry> navigation_timing_; |
| Member<UserTiming> user_timing_; |
| Member<PerformanceEntry> first_paint_timing_; |