Chromium Code Reviews| Index: Source/platform/PlatformEvent.h |
| diff --git a/Source/platform/PlatformEvent.h b/Source/platform/PlatformEvent.h |
| index a3dd410df194c82cc82459f922f6d0991d0405d0..563d7d77a7514c7ec7cfdfa23f9f915434c74eda 100644 |
| --- a/Source/platform/PlatformEvent.h |
| +++ b/Source/platform/PlatformEvent.h |
| @@ -78,6 +78,10 @@ public: |
| CtrlKey = 1 << 1, |
| MetaKey = 1 << 2, |
| ShiftKey = 1 << 3, |
| + |
| + LeftButtonDown = 1 << 6, |
| + MiddleButtonDown = 1 << 7, |
| + RightButtonDown = 1 << 8, |
|
Rick Byers
2014/11/28 17:36:02
By the way, with the addition of these, I believe
zino
2014/12/03 15:47:15
Done.
|
| }; |
| Type type() const { return static_cast<Type>(m_type); } |