| Index: third_party/WebKit/Source/platform/PlatformTouchEvent.h
 | 
| diff --git a/third_party/WebKit/Source/platform/PlatformTouchEvent.h b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
 | 
| index 97afb62f8860ec3892588efb50d7c46644915a43..4082877d94cae593cb6656b2af1db41dbb18e255 100644
 | 
| --- a/third_party/WebKit/Source/platform/PlatformTouchEvent.h
 | 
| +++ b/third_party/WebKit/Source/platform/PlatformTouchEvent.h
 | 
| @@ -32,6 +32,7 @@ public:
 | 
|          : PlatformEvent(PlatformEvent::TouchStart)
 | 
|          , m_dispatchType(PlatformEvent::Blocking)
 | 
|          , m_causesScrollingIfUncanceled(false)
 | 
| +        , m_dispatchedDuringFling(false)
 | 
|      {
 | 
|      }
 | 
|  
 | 
| @@ -40,11 +41,13 @@ public:
 | 
|      DispatchType dispatchType() const { return m_dispatchType; }
 | 
|      bool cancelable() const { return m_dispatchType == PlatformEvent::Blocking; }
 | 
|      bool causesScrollingIfUncanceled() const { return m_causesScrollingIfUncanceled; }
 | 
| +    bool dispatchedDuringFling() const { return m_dispatchedDuringFling; }
 | 
|  
 | 
|  protected:
 | 
|      Vector<PlatformTouchPoint> m_touchPoints;
 | 
|      DispatchType m_dispatchType;
 | 
|      bool m_causesScrollingIfUncanceled;
 | 
| +    bool m_dispatchedDuringFling;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |