| Index: third_party/WebKit/Source/web/WebPerformance.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPerformance.cpp b/third_party/WebKit/Source/web/WebPerformance.cpp
|
| index baeb02c2f1b8d43c9dadf499609be88184a5c3bb..d239f894c4697e4bde47d372e438fccb2878d845 100644
|
| --- a/third_party/WebKit/Source/web/WebPerformance.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPerformance.cpp
|
| @@ -190,6 +190,11 @@ double WebPerformance::firstContentfulPaint() const
|
| return millisecondsToSeconds(m_private->timing()->firstContentfulPaint());
|
| }
|
|
|
| +double WebPerformance::firstMeaningfulPaint() const
|
| +{
|
| + return millisecondsToSeconds(m_private->timing()->firstMeaningfulPaint());
|
| +}
|
| +
|
| double WebPerformance::parseStart() const
|
| {
|
| return millisecondsToSeconds(m_private->timing()->parseStart());
|
|
|