| Index: webkit/api/src/WebSettingsImpl.cpp
|
| diff --git a/webkit/api/src/WebSettingsImpl.cpp b/webkit/api/src/WebSettingsImpl.cpp
|
| index c74c16ff25f09f4152bf1100a7393c297b4ddb69..e6785f7d30dbef9d4f1eed76fac46f1872fea043 100644
|
| --- a/webkit/api/src/WebSettingsImpl.cpp
|
| +++ b/webkit/api/src/WebSettingsImpl.cpp
|
| @@ -254,4 +254,11 @@ void WebSettingsImpl::setExperimentalNotificationsEnabled(bool enabled)
|
| m_settings->setExperimentalNotificationsEnabled(enabled);
|
| }
|
|
|
| +void WebSettingsImpl::setExperimentalWebSocketsEnabled(bool enabled)
|
| +{
|
| +#if ENABLE(WEB_SOCKETS)
|
| + m_settings->setExperimentalWebSocketsEnabled(enabled);
|
| +#endif
|
| +}
|
| +
|
| } // namespace WebKit
|
|
|