Index: Source/web/FrameLoaderClientImpl.cpp |
diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp |
index 7f6d3f81e3f317fa32fa6a03f73c149e4711ab0c..321f500af9d41cd07d20af128fedbb766524105f 100644 |
--- a/Source/web/FrameLoaderClientImpl.cpp |
+++ b/Source/web/FrameLoaderClientImpl.cpp |
@@ -650,6 +650,12 @@ void FrameLoaderClientImpl::didDispatchPingLoader(const KURL& url) |
m_webFrame->client()->didDispatchPingLoader(m_webFrame, url); |
} |
+void FrameLoaderClientImpl::didChangePerformanceTiming() |
+{ |
+ if (m_webFrame->client()) |
+ m_webFrame->client()->didChangePerformanceTiming(); |
+} |
+ |
void FrameLoaderClientImpl::selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) |
{ |
if (WebFrameClient* client = m_webFrame->client()) |