Index: third_party/WebKit/Source/core/loader/DocumentLoader.cpp |
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp |
index e9498218cf2fbbd83ea56c8714a1b73c3f1ba69c..ab8ed64bea1230c09bedbd921183f186850f0186 100644 |
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.cpp |
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.cpp |
@@ -210,6 +210,13 @@ void DocumentLoader::didChangePerformanceTiming() |
} |
} |
+void DocumentLoader::didObserveLoadingBehavior(WebLoadingData data) |
+{ |
+ if (frame() && frame()->isMainFrame() && m_state >= Committed) { |
+ frameLoader()->client()->didObserveLoadingBehavior(data); |
+ } |
+} |
+ |
void DocumentLoader::updateForSameDocumentNavigation(const KURL& newURL, SameDocumentNavigationSource sameDocumentNavigationSource) |
{ |
KURL oldURL = m_request.url(); |