| Index: third_party/WebKit/Source/core/paint/PaintTiming.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/PaintTiming.cpp b/third_party/WebKit/Source/core/paint/PaintTiming.cpp
|
| index 3e7c53c2724f428d4395d3cc66ee5f5340e128e9..7cf83ef93b2850bc4e77e587d6d99db52db96e81 100644
|
| --- a/third_party/WebKit/Source/core/paint/PaintTiming.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/PaintTiming.cpp
|
| @@ -141,10 +141,6 @@ void PaintTiming::SetFirstPaint(double stamp) {
|
| if (first_paint_ != 0.0)
|
| return;
|
| first_paint_ = stamp;
|
| - Performance* performance = GetPerformanceInstance(GetFrame());
|
| - if (performance)
|
| - performance->AddFirstPaintTiming(first_paint_);
|
| -
|
| TRACE_EVENT_INSTANT1("loading,rail,devtools.timeline", "firstPaint",
|
| TRACE_EVENT_SCOPE_PROCESS, "frame", GetFrame());
|
| RegisterNotifySwapTime(PaintEvent::kFirstPaint);
|
| @@ -155,10 +151,6 @@ void PaintTiming::SetFirstContentfulPaint(double stamp) {
|
| return;
|
| SetFirstPaint(stamp);
|
| first_contentful_paint_ = stamp;
|
| - Performance* performance = GetPerformanceInstance(GetFrame());
|
| - if (performance)
|
| - performance->AddFirstContentfulPaintTiming(first_contentful_paint_);
|
| -
|
| TRACE_EVENT_INSTANT1("loading,rail,devtools.timeline", "firstContentfulPaint",
|
| TRACE_EVENT_SCOPE_PROCESS, "frame", GetFrame());
|
| RegisterNotifySwapTime(PaintEvent::kFirstContentfulPaint);
|
| @@ -184,12 +176,17 @@ void PaintTiming::ReportSwapTime(PaintEvent event,
|
| double timestamp) {
|
| if (!did_swap)
|
| return;
|
| + Performance* performance = GetPerformanceInstance(GetFrame());
|
| switch (event) {
|
| case PaintEvent::kFirstPaint:
|
| first_paint_swap_ = timestamp;
|
| + if (performance)
|
| + performance->AddFirstPaintTiming(first_paint_);
|
| return;
|
| case PaintEvent::kFirstContentfulPaint:
|
| first_contentful_paint_swap_ = timestamp;
|
| + if (performance)
|
| + performance->AddFirstContentfulPaintTiming(first_contentful_paint_);
|
| return;
|
| case PaintEvent::kFirstMeaningfulPaint:
|
| first_meaningful_paint_swap_ = timestamp;
|
|
|