| Index: Source/web/WebRuntimeFeatures.cpp
|
| diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
|
| index 4b3ca5b144662907146efac221114221ac418470..da1873cac622987790546e55cff8a1b73fe16de3 100644
|
| --- a/Source/web/WebRuntimeFeatures.cpp
|
| +++ b/Source/web/WebRuntimeFeatures.cpp
|
| @@ -78,6 +78,16 @@ bool WebRuntimeFeatures::isCompositedSelectionUpdateEnabled()
|
| return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled();
|
| }
|
|
|
| +void WebRuntimeFeatures::enableCompositorWorker(bool enable)
|
| +{
|
| + RuntimeEnabledFeatures::setCompositorWorkerEnabled(enable);
|
| +}
|
| +
|
| +bool WebRuntimeFeatures::isCompositorWorkerEnabled()
|
| +{
|
| + return RuntimeEnabledFeatures::compositorWorkerEnabled();
|
| +}
|
| +
|
| void WebRuntimeFeatures::enableDatabase(bool enable)
|
| {
|
| RuntimeEnabledFeatures::setDatabaseEnabled(enable);
|
|
|