| Index: Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
|
| index 15bcfd603f2c51f995b1887716a72c1af3183f90..558962727219409fc328c841d907a3d38958db7a 100644
|
| --- a/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/Source/web/WebLocalFrameImpl.cpp
|
| @@ -147,6 +147,7 @@
|
| #include "core/rendering/RenderBox.h"
|
| #include "core/rendering/RenderFrame.h"
|
| #include "core/rendering/RenderView.h"
|
| +#include "core/timing/DOMWindowPerformance.h"
|
| #include "core/timing/Performance.h"
|
| #include "modules/geolocation/GeolocationController.h"
|
| #include "modules/notifications/NotificationPermissionClient.h"
|
| @@ -686,7 +687,7 @@ WebPerformance WebLocalFrameImpl::performance() const
|
| {
|
| if (!frame())
|
| return WebPerformance();
|
| - return WebPerformance(frame()->domWindow()->performance());
|
| + return WebPerformance(DOMWindowPerformance::performance(*(frame()->domWindow())));
|
| }
|
|
|
| bool WebLocalFrameImpl::dispatchBeforeUnloadEvent()
|
|
|