| 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 SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ | 5 #ifndef SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ |
| 6 #define SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ | 6 #define SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 virtual bool userScrollableHorizontal() const; | 112 virtual bool userScrollableHorizontal() const; |
| 113 virtual bool userScrollableVertical() const; | 113 virtual bool userScrollableVertical() const; |
| 114 virtual void setHaveWheelEventHandlers(bool have_wheel_event_handlers); | 114 virtual void setHaveWheelEventHandlers(bool have_wheel_event_handlers); |
| 115 virtual bool haveWheelEventHandlers() const; | 115 virtual bool haveWheelEventHandlers() const; |
| 116 virtual void setHaveScrollEventHandlers(bool have_scroll_event_handlers); | 116 virtual void setHaveScrollEventHandlers(bool have_scroll_event_handlers); |
| 117 virtual bool haveScrollEventHandlers() const; | 117 virtual bool haveScrollEventHandlers() const; |
| 118 virtual void setShouldScrollOnMainThread(bool scroll_on_main); | 118 virtual void setShouldScrollOnMainThread(bool scroll_on_main); |
| 119 virtual bool shouldScrollOnMainThread() const; | 119 virtual bool shouldScrollOnMainThread() const; |
| 120 virtual void setNonFastScrollableRegion( | 120 virtual void setNonFastScrollableRegion( |
| 121 const blink::WebVector<blink::WebRect>& region); | 121 const blink::WebVector<blink::WebRect>& region); |
| 122 virtual blink::WebVector<blink::WebRect> nonFastScrollableRegion() const; | |
| 123 virtual void setTouchEventHandlerRegion( | |
| 124 const blink::WebVector<blink::WebRect>& region); | |
| 125 virtual blink::WebVector<blink::WebRect> touchEventHandlerRegion() const; | |
| 126 virtual void setScrollClient(blink::WebLayerScrollClient* client); | 122 virtual void setScrollClient(blink::WebLayerScrollClient* client); |
| 127 virtual bool isOrphan() const; | 123 virtual bool isOrphan() const; |
| 128 virtual void setWebLayerClient(blink::WebLayerClient* client); | 124 virtual void setWebLayerClient(blink::WebLayerClient* client); |
| 129 | 125 |
| 130 // LayerClient implementation. | 126 // LayerClient implementation. |
| 131 virtual scoped_refptr<base::debug::ConvertableToTraceFormat> TakeDebugInfo() | 127 virtual scoped_refptr<base::debug::ConvertableToTraceFormat> TakeDebugInfo() |
| 132 override; | 128 override; |
| 133 | 129 |
| 134 virtual void setScrollParent(blink::WebLayer* parent); | 130 virtual void setScrollParent(blink::WebLayer* parent); |
| 135 virtual void setClipParent(blink::WebLayer* parent); | 131 virtual void setClipParent(blink::WebLayer* parent); |
| 136 | 132 |
| 137 protected: | 133 protected: |
| 138 scoped_refptr<cc::Layer> layer_; | 134 scoped_refptr<cc::Layer> layer_; |
| 139 blink::WebLayerClient* web_layer_client_; | 135 blink::WebLayerClient* web_layer_client_; |
| 140 | 136 |
| 141 private: | 137 private: |
| 142 scoped_ptr<WebToCCAnimationDelegateAdapter> animation_delegate_adapter_; | 138 scoped_ptr<WebToCCAnimationDelegateAdapter> animation_delegate_adapter_; |
| 143 | 139 |
| 144 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); | 140 DISALLOW_COPY_AND_ASSIGN(WebLayerImpl); |
| 145 }; | 141 }; |
| 146 | 142 |
| 147 } // namespace sky_viewer_cc | 143 } // namespace sky_viewer_cc |
| 148 | 144 |
| 149 #endif // SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ | 145 #endif // SKY_VIEWER_CC_WEB_LAYER_IMPL_H_ |
| OLD | NEW |