| Index: cc/trees/layer_tree_host.h
|
| diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
|
| index d8eba8d10738f8c715dc9e3dc8ab1e973f4779b4..55bca8adacdbe812d0a63fff5cf87ebc65dbc4f7 100644
|
| --- a/cc/trees/layer_tree_host.h
|
| +++ b/cc/trees/layer_tree_host.h
|
| @@ -207,6 +207,9 @@ class CC_EXPORT LayerTreeHost : public MutatorHostClient {
|
|
|
| void RegisterSelection(const LayerSelection& selection);
|
|
|
| + bool have_wheel_event_handlers() const { return have_wheel_event_handlers_; }
|
| + void SetHaveWheelEventHandlers(bool have_event_handlers);
|
| +
|
| const LayerTreeSettings& settings() const { return settings_; }
|
|
|
| void SetDebugState(const LayerTreeDebugState& debug_state);
|
| @@ -503,6 +506,8 @@ class CC_EXPORT LayerTreeHost : public MutatorHostClient {
|
| SkColor background_color_;
|
| bool has_transparent_background_;
|
|
|
| + bool have_wheel_event_handlers_;
|
| +
|
| scoped_ptr<AnimationRegistrar> animation_registrar_;
|
| scoped_ptr<AnimationHost> animation_host_;
|
|
|
|
|