| Index: Source/web/WebRuntimeFeatures.cpp
|
| diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
|
| index 153ac79590dd1577a40a74dbd7d508bd12831a01..61516970a88965ec87a0b428926cf840c8698c82 100644
|
| --- a/Source/web/WebRuntimeFeatures.cpp
|
| +++ b/Source/web/WebRuntimeFeatures.cpp
|
| @@ -269,6 +269,16 @@ bool WebRuntimeFeatures::isNotificationsEnabled()
|
| return RuntimeEnabledFeatures::notificationsEnabled();
|
| }
|
|
|
| +void WebRuntimeFeatures::enableNavigatorContentUtils(bool enable)
|
| +{
|
| + RuntimeEnabledFeatures::setNavigatorContentUtilsEnabled(enable);
|
| +}
|
| +
|
| +bool WebRuntimeFeatures::isNavigatorContentUtilsEnabled()
|
| +{
|
| + return RuntimeEnabledFeatures::navigatorContentUtilsEnabled();
|
| +}
|
| +
|
| void WebRuntimeFeatures::enablePagePopup(bool enable)
|
| {
|
| RuntimeEnabledFeatures::setPagePopupEnabled(enable);
|
|
|