| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CC_BLINK_WEB_LAYER_IMPL_H_ | 5 #ifndef CC_BLINK_WEB_LAYER_IMPL_H_ |
| 6 #define CC_BLINK_WEB_LAYER_IMPL_H_ | 6 #define CC_BLINK_WEB_LAYER_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 bool hasActiveAnimation() override; | 114 bool hasActiveAnimation() override; |
| 115 void setForceRenderSurface(bool force) override; | 115 void setForceRenderSurface(bool force) override; |
| 116 void setScrollPositionDouble(blink::WebDoublePoint position) override; | 116 void setScrollPositionDouble(blink::WebDoublePoint position) override; |
| 117 blink::WebDoublePoint scrollPositionDouble() const override; | 117 blink::WebDoublePoint scrollPositionDouble() const override; |
| 118 void setScrollCompensationAdjustment(blink::WebDoublePoint position) override; | 118 void setScrollCompensationAdjustment(blink::WebDoublePoint position) override; |
| 119 void setScrollClipLayer(blink::WebLayer* clip_layer) override; | 119 void setScrollClipLayer(blink::WebLayer* clip_layer) override; |
| 120 bool scrollable() const override; | 120 bool scrollable() const override; |
| 121 void setUserScrollable(bool horizontal, bool vertical) override; | 121 void setUserScrollable(bool horizontal, bool vertical) override; |
| 122 bool userScrollableHorizontal() const override; | 122 bool userScrollableHorizontal() const override; |
| 123 bool userScrollableVertical() const override; | 123 bool userScrollableVertical() const override; |
| 124 void setHaveWheelEventHandlers(bool have_wheel_event_handlers) override; | |
| 125 bool haveWheelEventHandlers() const override; | |
| 126 void setHaveScrollEventHandlers(bool have_scroll_event_handlers) override; | 124 void setHaveScrollEventHandlers(bool have_scroll_event_handlers) override; |
| 127 bool haveScrollEventHandlers() const override; | 125 bool haveScrollEventHandlers() const override; |
| 128 void addMainThreadScrollingReasons( | 126 void addMainThreadScrollingReasons( |
| 129 uint32_t main_thread_scrolling_reasons) override; | 127 uint32_t main_thread_scrolling_reasons) override; |
| 130 void clearMainThreadScrollingReasons() override; | 128 void clearMainThreadScrollingReasons() override; |
| 131 bool shouldScrollOnMainThread() const override; | 129 bool shouldScrollOnMainThread() const override; |
| 132 void setNonFastScrollableRegion( | 130 void setNonFastScrollableRegion( |
| 133 const blink::WebVector<blink::WebRect>& region) override; | 131 const blink::WebVector<blink::WebRect>& region) override; |
| 134 blink::WebVector<blink::WebRect> nonFastScrollableRegion() const override; | 132 blink::WebVector<blink::WebRect> nonFastScrollableRegion() const override; |
| 135 void setTouchEventHandlerRegion( | 133 void setTouchEventHandlerRegion( |
| (...skipping 28 matching lines...) Expand all Loading... |
| 164 | 162 |
| 165 private: | 163 private: |
| 166 scoped_ptr<WebToCCAnimationDelegateAdapter> animation_delegate_adapter_; | 164 scoped_ptr<WebToCCAnimationDelegateAdapter> animation_delegate_adapter_; |
| 167 | 165 |
| 168 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); | 166 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); |
| 169 }; | 167 }; |
| 170 | 168 |
| 171 } // namespace cc_blink | 169 } // namespace cc_blink |
| 172 | 170 |
| 173 #endif // CC_BLINK_WEB_LAYER_IMPL_H_ | 171 #endif // CC_BLINK_WEB_LAYER_IMPL_H_ |
| OLD | NEW |