Index: third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
index 72b3498927da1ccff9c73db7328507b06fed2501..ea44ccda98e8775181cdac4bccabecf17b2cff33 100644 |
--- a/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp |
@@ -728,6 +728,12 @@ void FrameLoaderClientImpl::didChangePerformanceTiming() |
m_webFrame->client()->didChangePerformanceTiming(); |
} |
+void FrameLoaderClientImpl::didObserveLoadingBehavior(WebLoadingBehaviorFlag behavior) |
+{ |
+ if (m_webFrame->client()) |
+ m_webFrame->client()->didObserveLoadingBehavior(behavior); |
+} |
+ |
void FrameLoaderClientImpl::selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) |
{ |
if (WebFrameClient* client = m_webFrame->client()) |