Index: cc/layer_impl.h |
diff --git a/cc/layer_impl.h b/cc/layer_impl.h |
index d51f3d0efcd0f05355fadae8c8b3e73c7d1173d2..699a60098f796b570cd8e31062609f2c2e780ae0 100644 |
--- a/cc/layer_impl.h |
+++ b/cc/layer_impl.h |
@@ -217,6 +217,9 @@ public: |
const Region& nonFastScrollableRegion() const { return m_nonFastScrollableRegion; } |
void setNonFastScrollableRegion(const Region& region) { m_nonFastScrollableRegion = region; } |
+ const Region& touchEventHandlerRegion() const { return m_touchEventHandlerRegion; } |
+ void setTouchEventHandlerRegion(const Region& region) { m_touchEventHandlerRegion = region; } |
+ |
void setDrawCheckerboardForMissingTiles(bool checkerboard) { m_drawCheckerboardForMissingTiles = checkerboard; } |
bool drawCheckerboardForMissingTiles() const; |
@@ -321,6 +324,7 @@ private: |
bool m_shouldScrollOnMainThread; |
bool m_haveWheelEventHandlers; |
Region m_nonFastScrollableRegion; |
+ Region m_touchEventHandlerRegion; |
SkColor m_backgroundColor; |
// Whether the "back" of this layer should draw. |