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

Unified Diff: cc/trees/property_tree_unittest.cc

Issue 1864183002: cc: Main thread skip single layers instead of subtrees (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Format the comments Created 4 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
« no previous file with comments | « cc/trees/property_tree.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/property_tree_unittest.cc
diff --git a/cc/trees/property_tree_unittest.cc b/cc/trees/property_tree_unittest.cc
index c13ca99a0622852c513dbe8f9eb4c6a2056abe84..6cc1cf148e613f144911c76c60b9a76fee930ae0 100644
--- a/cc/trees/property_tree_unittest.cc
+++ b/cc/trees/property_tree_unittest.cc
@@ -30,7 +30,7 @@ TEST(PropertyTreeSerializationTest, TransformNodeDataSerialization) {
original.is_invertible = false;
original.ancestors_are_invertible = false;
original.is_animated = false;
- original.to_screen_is_animated = false;
+ original.to_screen_is_potentially_animated = false;
original.has_only_translation_animations = false;
original.to_screen_has_scale_animation = false;
original.flattens_inherited_transform = false;
@@ -1074,7 +1074,7 @@ class PropertyTreeTestSingularTransformSnapTest : public PropertyTreeTest {
// snapping to be skipped).
EXPECT_TRUE(child_node->data.scrolls);
EXPECT_TRUE(child_node->data.to_target.IsScaleOrTranslation());
- EXPECT_FALSE(child_node->data.to_screen_is_animated);
+ EXPECT_FALSE(child_node->data.to_screen_is_potentially_animated);
EXPECT_FALSE(child_node->data.ancestors_are_invertible);
gfx::Transform rounded = child_node->data.to_target;
« no previous file with comments | « cc/trees/property_tree.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698