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

Unified Diff: third_party/WebKit/Source/core/dom/TaskRunnerHelper.h

Issue 2810423003: Schedule bitmap animation timers on the compositor task runner. (Closed)
Patch Set: fix up comment about a method changed by blink reformat 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/dom/TaskRunnerHelper.h
diff --git a/third_party/WebKit/Source/core/dom/TaskRunnerHelper.h b/third_party/WebKit/Source/core/dom/TaskRunnerHelper.h
index 9389cdbcee5dd86f8dc2d2a10287962537eae4cd..1983cd78acea7c1324182f6f0221d060459b6c78 100644
--- a/third_party/WebKit/Source/core/dom/TaskRunnerHelper.h
+++ b/third_party/WebKit/Source/core/dom/TaskRunnerHelper.h
@@ -123,6 +123,9 @@ enum class TaskType : unsigned {
// Tasks that must not be throttled should be posted here, but the usage
// should be very limited.
kUnthrottled,
+
+ // Tasks related to animating images should be posted here.
Sami 2017/04/27 17:38:17 nit: No need to limit this to image animations --
Dan Elphick 2017/05/03 09:41:06 no longer required
+ kAnimationTimer,
};
// HashTraits for TaskType.

Powered by Google App Engine
This is Rietveld 408576698