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

Unified Diff: cc/test/layer_tree_json_parser.cc

Issue 1639363002: Move have_wheel_event_handlers to WebLayerTreeView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests 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/test/layer_tree_json_parser.cc
diff --git a/cc/test/layer_tree_json_parser.cc b/cc/test/layer_tree_json_parser.cc
index 4dd3d661e13fc257178412002ea34177acd5bf35..0aef067a25451a8401cff43517545fed9ed8a3a1 100644
--- a/cc/test/layer_tree_json_parser.cc
+++ b/cc/test/layer_tree_json_parser.cc
@@ -125,10 +125,6 @@ scoped_refptr<Layer> ParseTreeFromValue(base::Value* val,
new_layer->SetScrollClipLayerId(scrollable ? new_layer->id()
: Layer::INVALID_ID);
- bool wheel_handler;
- if (dict->GetBoolean("WheelHandler", &wheel_handler))
- new_layer->SetHaveWheelEventHandlers(wheel_handler);
-
bool scroll_handler;
if (dict->GetBoolean("ScrollHandler", &scroll_handler))
new_layer->SetHaveScrollEventHandlers(scroll_handler);

Powered by Google App Engine
This is Rietveld 408576698