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

Unified Diff: ui/compositor/test/layer_animator_test_controller.cc

Issue 1700653002: CC Animation: Expose TargetProperty enum to be aliased in Blink Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 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
« no previous file with comments | « ui/compositor/layer_animator_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/test/layer_animator_test_controller.cc
diff --git a/ui/compositor/test/layer_animator_test_controller.cc b/ui/compositor/test/layer_animator_test_controller.cc
index 6ec2cf3a42380b7a07015ef27d52be18fd143d87..497cb92e9cb98971966ca750f86c7b6fcd579ba2 100644
--- a/ui/compositor/test/layer_animator_test_controller.cc
+++ b/ui/compositor/test/layer_animator_test_controller.cc
@@ -31,9 +31,9 @@ LayerAnimationSequence* LayerAnimatorTestController::GetRunningSequence(
}
void LayerAnimatorTestController::StartThreadedAnimationsIfNeeded() {
- std::vector<cc::Animation::TargetProperty> threaded_properties;
- threaded_properties.push_back(cc::Animation::OPACITY);
- threaded_properties.push_back(cc::Animation::TRANSFORM);
+ std::vector<cc::TargetProperty::Type> threaded_properties;
+ threaded_properties.push_back(cc::TargetProperty::OPACITY);
+ threaded_properties.push_back(cc::TargetProperty::TRANSFORM);
for (size_t i = 0; i < threaded_properties.size(); i++) {
LayerAnimationElement::AnimatableProperty animatable_property =
« no previous file with comments | « ui/compositor/layer_animator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698