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