| Index: third_party/WebKit/public/platform/WebGestureEvent.h
|
| diff --git a/third_party/WebKit/public/platform/WebGestureEvent.h b/third_party/WebKit/public/platform/WebGestureEvent.h
|
| index 838370f19b802a46ac548f0cdf00d7ff3dc75b0c..360c713574f3b4db895903016cd72ec5860bedaf 100644
|
| --- a/third_party/WebKit/public/platform/WebGestureEvent.h
|
| +++ b/third_party/WebKit/public/platform/WebGestureEvent.h
|
| @@ -194,12 +194,12 @@ class WebGestureEvent : public WebInputEvent {
|
| // 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.
|
| - DCHECK(type == WebInputEvent::GestureScrollUpdate);
|
| + DCHECK(m_type == WebInputEvent::GestureScrollUpdate);
|
| return true;
|
| }
|
|
|
| bool isScrollEvent() const {
|
| - switch (type) {
|
| + switch (m_type) {
|
| case GestureScrollBegin:
|
| case GestureScrollEnd:
|
| case GestureScrollUpdate:
|
|
|