Index: third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
index 73c1b65eae7e909e3c67d43e77b7aad96d22c5d4..7a2e857f786a1b01ff877e7000972958ddc54500 100644 |
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp |
@@ -1027,4 +1027,9 @@ void LocalFrameClientImpl::setHasReceivedUserGesture() { |
m_webFrame->client()->setHasReceivedUserGesture(); |
} |
+void LocalFrameClientImpl::abortClientNavigation() { |
+ if (m_webFrame->client()) |
+ m_webFrame->client()->abortClientNavigation(); |
+} |
+ |
} // namespace blink |