| Index: Source/web/FrameLoaderClientImpl.cpp
|
| diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
|
| index b217ab056b916af2c6e25ebd32a5a39e4e82e07c..ab89c55833256ae68f06e0dd4f509a058a886840 100644
|
| --- a/Source/web/FrameLoaderClientImpl.cpp
|
| +++ b/Source/web/FrameLoaderClientImpl.cpp
|
| @@ -934,11 +934,11 @@ unsigned FrameLoaderClientImpl::backForwardLength()
|
| return webview->client()->historyBackListCount() + 1 + webview->client()->historyForwardListCount();
|
| }
|
|
|
| -void FrameLoaderClientImpl::suddenTerminationDisablerChanged(int variation, SuddenTerminationDisablerType type)
|
| +void FrameLoaderClientImpl::suddenTerminationDisablerChanged(bool present, SuddenTerminationDisablerType type)
|
| {
|
| if (m_webFrame->client()) {
|
| m_webFrame->client()->suddenTerminationDisablerChanged(
|
| - variation, static_cast<WebFrameClient::SuddenTerminationDisablerType>(type));
|
| + present, static_cast<WebFrameClient::SuddenTerminationDisablerType>(type));
|
| }
|
| }
|
|
|
|
|