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

Unified Diff: cc/input/scrollbar_animation_controller_unittest.cc

Issue 2827163005: Remove scroll layer ids from scrollbar layers (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: cc/input/scrollbar_animation_controller_unittest.cc
diff --git a/cc/input/scrollbar_animation_controller_unittest.cc b/cc/input/scrollbar_animation_controller_unittest.cc
index 9c2572a5dd5e56ad7c57418ee3569cb70eb08bd6..349c7b7caf45ca3e01468cd4a1c4376043ebdb6b 100644
--- a/cc/input/scrollbar_animation_controller_unittest.cc
+++ b/cc/input/scrollbar_animation_controller_unittest.cc
@@ -107,10 +107,8 @@ class ScrollbarAnimationControllerAuraOverlayTest : public testing::Test {
clip_layer_->test_properties()->AddChild(std::move(scroll_layer));
host_impl_.active_tree()->SetRootLayerForTesting(std::move(clip));
- v_scrollbar_layer_->SetScrollInfo(scroll_layer_ptr->id(),
- scroll_layer_ptr->element_id());
- h_scrollbar_layer_->SetScrollInfo(scroll_layer_ptr->id(),
- scroll_layer_ptr->element_id());
+ v_scrollbar_layer_->SetScrollElementId(scroll_layer_ptr->element_id());
+ h_scrollbar_layer_->SetScrollElementId(scroll_layer_ptr->element_id());
v_scrollbar_layer_->test_properties()->opacity_can_animate = true;
h_scrollbar_layer_->test_properties()->opacity_can_animate = true;
clip_layer_->SetBounds(gfx::Size(100, 100));
@@ -1159,14 +1157,14 @@ class ScrollbarAnimationControllerAndroidTest
clip_layer_ = clip.get();
scroll_layer->SetElementId(
LayerIdToElementIdForTesting(scroll_layer->id()));
+
scroll_layer->SetScrollClipLayer(clip_layer_->id());
LayerImpl* scroll_layer_ptr = scroll_layer.get();
scroll_layer->test_properties()->AddChild(std::move(scrollbar));
clip->test_properties()->AddChild(std::move(scroll_layer));
host_impl_.active_tree()->SetRootLayerForTesting(std::move(clip));
- scrollbar_layer_->SetScrollInfo(scroll_layer_ptr->id(),
- scroll_layer_ptr->element_id());
+ scrollbar_layer_->SetScrollElementId(scroll_layer_ptr->element_id());
clip_layer_->SetBounds(gfx::Size(100, 100));
scroll_layer_ptr->SetBounds(gfx::Size(200, 200));
host_impl_.active_tree()->BuildLayerListAndPropertyTreesForTesting();

Powered by Google App Engine
This is Rietveld 408576698