| 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 ea863b229ae2b566203f190baa0c951d7455a442..1cd3290306e35eaaa56d89819858519aa08a83ea 100644
|
| --- a/third_party/WebKit/Source/web/WebPerformance.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPerformance.cpp
|
| @@ -186,6 +186,12 @@ double WebPerformance::firstImagePaint() const
|
| return millisecondsToSeconds(m_private->timing()->firstImagePaint());
|
| }
|
|
|
| +double WebPerformance::speedIndex() const
|
| +{
|
| + double speedIndex = m_private->timing()->speedIndex();
|
| + return speedIndex;
|
| +}
|
| +
|
| WebPerformance::WebPerformance(const PassRefPtrWillBeRawPtr<Performance>& performance)
|
| : m_private(performance)
|
| {
|
|
|