Chromium Code Reviews| Index: Source/core/events/MouseEvent.h |
| diff --git a/Source/core/events/MouseEvent.h b/Source/core/events/MouseEvent.h |
| index d2f6fd2b7a80e10229d34e9c5b8ade876d9f9db0..d0c503949b3d082d0bb6c0aadbbd2f1b989c2448 100644 |
| --- a/Source/core/events/MouseEvent.h |
| +++ b/Source/core/events/MouseEvent.h |
| @@ -118,13 +118,13 @@ private: |
| class SimulatedMouseEvent final : public MouseEvent { |
| public: |
| - static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent); |
| + static PassRefPtrWillBeRawPtr<SimulatedMouseEvent> create(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent, bool isTrusted); |
|
tkent
2015/08/11 23:23:11
Please use SimulatedClickCreationScope for the las
dtapuska
2015/08/12 14:41:14
Done.
|
| ~SimulatedMouseEvent() override; |
| DECLARE_VIRTUAL_TRACE(); |
| private: |
| - SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent); |
| + SimulatedMouseEvent(const AtomicString& eventType, PassRefPtrWillBeRawPtr<AbstractView>, PassRefPtrWillBeRawPtr<Event> underlyingEvent, bool isTrusted); |
| }; |
| class MouseEventDispatchMediator final : public EventDispatchMediator { |