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

Unified Diff: third_party/WebKit/Source/core/animation/AnimationTimeline.cpp

Issue 2809543002: bindings: Pass is_null flag to attribute setters when they are nullable (Closed)
Patch Set: Created 3 years, 8 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: third_party/WebKit/Source/core/animation/AnimationTimeline.cpp
diff --git a/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp b/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp
index 61a36cb7f8c485fb7c67e8ad7e03f0a687258c5f..1b71c598574c0526099276c4618bc070151d86fe 100644
--- a/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp
+++ b/third_party/WebKit/Source/core/animation/AnimationTimeline.cpp
@@ -222,7 +222,7 @@ double AnimationTimeline::CurrentTimeInternal() {
return CurrentTimeInternal(is_null);
}
-void AnimationTimeline::setCurrentTime(double current_time) {
+void AnimationTimeline::setCurrentTime(double current_time, bool is_null) {
SetCurrentTimeInternal(current_time / 1000);
}

Powered by Google App Engine
This is Rietveld 408576698