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

Unified Diff: cc/trees/layer_tree_host_impl_unittest.cc

Issue 1577263004: Communicate whether passive event listeners exist to cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners
Patch Set: Rebase Created 4 years, 11 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/trees/layer_tree_host_impl_unittest.cc
diff --git a/cc/trees/layer_tree_host_impl_unittest.cc b/cc/trees/layer_tree_host_impl_unittest.cc
index f5887277263317528df7dfed63e0e84b4443be3f..54c4faf04686c9252d774da834c639d14cd25305 100644
--- a/cc/trees/layer_tree_host_impl_unittest.cc
+++ b/cc/trees/layer_tree_host_impl_unittest.cc
@@ -720,7 +720,7 @@ TEST_F(LayerTreeHostImplTest, ScrollBlocksOnWheelEventHandlers) {
// With registered event handlers, wheel scrolls don't necessarily
// have to go to the main thread.
- root->SetHaveWheelEventHandlers(true);
+ root->SetWheelEventProperties(EventListenerProperties::kBlocking);
InputHandler::ScrollStatus status = host_impl_->ScrollBegin(
BeginState(gfx::Point()).get(), InputHandler::WHEEL);
EXPECT_EQ(InputHandler::SCROLL_ON_IMPL_THREAD, status.thread);
@@ -747,7 +747,7 @@ TEST_F(LayerTreeHostImplTest, ScrollBlocksOnWheelEventHandlers) {
// And if the handlers go away, wheel scrolls can again be processed
// on impl (despite the scroll-blocks-on mode).
- root->SetHaveWheelEventHandlers(false);
+ root->SetWheelEventProperties(EventListenerProperties::kNone);
status = host_impl_->ScrollBegin(BeginState(gfx::Point()).get(),
InputHandler::WHEEL);
EXPECT_EQ(InputHandler::SCROLL_ON_IMPL_THREAD, status.thread);
@@ -871,7 +871,8 @@ TEST_F(LayerTreeHostImplTest, ScrollBlocksOnLayerTopology) {
7, gfx::Size(10, 10), scrollable_child_clip_1.get());
child1 = scrollable_child_1.get();
scrollable_child_1->SetPosition(gfx::PointF(5.f, 5.f));
- scrollable_child_1->SetHaveWheelEventHandlers(true);
+ scrollable_child_1->SetWheelEventProperties(
+ EventListenerProperties::kBlocking);
scrollable_child_1->SetHaveScrollEventHandlers(true);
scrollable_child_clip_1->AddChild(std::move(scrollable_child_1));
root_child->AddChild(std::move(scrollable_child_clip_1));
@@ -886,7 +887,8 @@ TEST_F(LayerTreeHostImplTest, ScrollBlocksOnLayerTopology) {
9, gfx::Size(10, 10), scrollable_child_clip_2.get());
child2 = scrollable_child_2.get();
scrollable_child_2->SetPosition(gfx::PointF(5.f, 20.f));
- scrollable_child_2->SetHaveWheelEventHandlers(true);
+ scrollable_child_2->SetWheelEventProperties(
+ EventListenerProperties::kBlocking);
scrollable_child_2->SetHaveScrollEventHandlers(true);
scrollable_child_clip_2->AddChild(std::move(scrollable_child_2));
root_child->AddChild(std::move(scrollable_child_clip_2));

Powered by Google App Engine
This is Rietveld 408576698