| Index: third_party/WebKit/Source/core/events/UIEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/UIEvent.cpp b/third_party/WebKit/Source/core/events/UIEvent.cpp
|
| index 47bfb3b46de6477da94ececa89577bcc43b0bbfd..03335acaebfab8bc38a47c5753b30d9d54e100fe 100644
|
| --- a/third_party/WebKit/Source/core/events/UIEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/UIEvent.cpp
|
| @@ -32,7 +32,7 @@ UIEvent::UIEvent()
|
| }
|
|
|
| // TODO(lanwei): Will add sourceCapabilities to all the subclass of UIEvent later, see https://crbug.com/476530.
|
| -UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| +UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, RawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| : Event(eventType, canBubbleArg, cancelableArg)
|
| , m_view(viewArg)
|
| , m_detail(detailArg)
|
| @@ -40,7 +40,7 @@ UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelab
|
| {
|
| }
|
|
|
| -UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, double platformTimeStamp, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| +UIEvent::UIEvent(const AtomicString& eventType, bool canBubbleArg, bool cancelableArg, double platformTimeStamp, RawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| : Event(eventType, canBubbleArg, cancelableArg, platformTimeStamp)
|
| , m_view(viewArg)
|
| , m_detail(detailArg)
|
| @@ -60,12 +60,12 @@ UIEvent::~UIEvent()
|
| {
|
| }
|
|
|
| -void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg)
|
| +void UIEvent::initUIEvent(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, RawPtr<AbstractView> viewArg, int detailArg)
|
| {
|
| initUIEventInternal(typeArg, canBubbleArg, cancelableArg, viewArg, detailArg, nullptr);
|
| }
|
|
|
| -void UIEvent::initUIEventInternal(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, PassRefPtrWillBeRawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| +void UIEvent::initUIEventInternal(const AtomicString& typeArg, bool canBubbleArg, bool cancelableArg, RawPtr<AbstractView> viewArg, int detailArg, InputDeviceCapabilities* sourceCapabilitiesArg)
|
| {
|
| if (dispatched())
|
| return;
|
|
|