| 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 090852de317418071f2b77d3e75e4f2631db6fe7..c1adc7364349126a23d95af8bbba7ce1aba6873c 100644
|
| --- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
|
| @@ -1035,4 +1035,9 @@ void LocalFrameClientImpl::setHasReceivedUserGesture() {
|
| m_webFrame->client()->setHasReceivedUserGesture();
|
| }
|
|
|
| +void LocalFrameClientImpl::abortClientNavigation() {
|
| + if (m_webFrame->client())
|
| + m_webFrame->client()->abortClientNavigation();
|
| +}
|
| +
|
| } // namespace blink
|
|
|