Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1450)

Unified Diff: Source/web/WebRuntimeFeatures.cpp

Issue 946323002: Animations: Introduce compositor AnimationPlayer and AnimationTimeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename. Create cc::AnimationPlayer on PreCommit if needed. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/WebRuntimeFeatures.cpp
diff --git a/Source/web/WebRuntimeFeatures.cpp b/Source/web/WebRuntimeFeatures.cpp
index 6f4a53a69473501af168d321704c8063a2ec3b93..79d6c5b773046e10756ab4db0d5d61ff0154cb82 100644
--- a/Source/web/WebRuntimeFeatures.cpp
+++ b/Source/web/WebRuntimeFeatures.cpp
@@ -58,6 +58,11 @@ void WebRuntimeFeatures::enableBlinkScheduler(bool enable)
RuntimeEnabledFeatures::setBlinkSchedulerEnabled(enable);
}
+void WebRuntimeFeatures::enableCompositorAnimationTimelines(bool enable)
+{
+ RuntimeEnabledFeatures::setCompositorAnimationTimelinesEnabled(enable);
+}
+
void WebRuntimeFeatures::enableTestOnlyFeatures(bool enable)
{
RuntimeEnabledFeatures::setTestFeaturesEnabled(enable);

Powered by Google App Engine
This is Rietveld 408576698