Index: third_party/WebKit/Source/platform/PlatformGestureEvent.h |
diff --git a/third_party/WebKit/Source/platform/PlatformGestureEvent.h b/third_party/WebKit/Source/platform/PlatformGestureEvent.h |
index 53453a186462f593f6548137716175d6aa9d50ae..52fd1f3f488d98656f4c425fd6f9a2c5669cf19a 100644 |
--- a/third_party/WebKit/Source/platform/PlatformGestureEvent.h |
+++ b/third_party/WebKit/Source/platform/PlatformGestureEvent.h |
@@ -135,8 +135,11 @@ public: |
bool preventPropagation() const |
{ |
+ // TODO(tdresser) Once we've decided if we're getting rid of scroll |
+ // chaining, we should remove all scroll chaining related logic. See |
+ // crbug.com/526462 for details. |
ASSERT(m_type == PlatformEvent::GestureScrollUpdate); |
- return m_data.m_scroll.m_preventPropagation; |
+ return true; |
} |
float scale() const |