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