Chromium Code Reviews| Index: sky/engine/core/events/PointerEvent.h |
| diff --git a/sky/engine/core/events/PointerEvent.h b/sky/engine/core/events/PointerEvent.h |
| index 5c2c0d41213257eacf8e96a0547ebcfb7efcb0db..86dbd438cead2cccebc77b72b40a561e1447a1bc 100644 |
| --- a/sky/engine/core/events/PointerEvent.h |
| +++ b/sky/engine/core/events/PointerEvent.h |
| @@ -77,6 +77,8 @@ public: |
| double orientation() const { return m_orientation; } |
| double tilt() const { return m_tilt; } |
| + void setPrimary(bool primary) { m_primary = primary; } |
|
esprehn
2015/01/21 02:47:51
Does this change dynamically? What happens if two
abarth-chromium
2015/01/21 07:03:26
Currently everything is marked as primary. It's s
abarth-chromium
2015/01/23 02:25:09
I removed this for now. When we have more of this
|
| + |
| private: |
| PointerEvent(); |
| explicit PointerEvent(const WebPointerEvent& event); |