Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp |
diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp |
index a78ab0fced113bfdf6612958c757afec6db4d10b..9750015fddcef798d6c4fc71ed048024c3a12d43 100644 |
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp |
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp |
@@ -331,6 +331,18 @@ bool WebRuntimeFeatures::isTouchEnabled() |
return RuntimeEnabledFeatures::touchEnabled(); |
} |
+void WebRuntimeFeatures::enableWebAnimationsCSS() |
+{ |
+ RuntimeEnabledFeatures::setWebAnimationsEnabled(true); |
+ RuntimeEnabledFeatures::setWebAnimationsCSSEnabled(true); |
+} |
+ |
+void WebRuntimeFeatures::enableWebAnimationsSVG() |
+{ |
+ RuntimeEnabledFeatures::setWebAnimationsEnabled(true); |
+ RuntimeEnabledFeatures::setWebAnimationsSVGEnabled(true); |
+} |
+ |
void WebRuntimeFeatures::enableWebAudio(bool enable) |
{ |
RuntimeEnabledFeatures::setWebAudioEnabled(enable); |