| Index: third_party/WebKit/Source/core/dom/Node.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Node.cpp b/third_party/WebKit/Source/core/dom/Node.cpp
|
| index cd0391a42ea4920e0700ff7e492bcc015480ab57..3da9bd28bb35ec490fcf957d6c136eb2dc4bfacf 100644
|
| --- a/third_party/WebKit/Source/core/dom/Node.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Node.cpp
|
| @@ -1754,7 +1754,7 @@ void Node::didMoveToNewDocument(Document& oldDocument)
|
| }
|
| }
|
|
|
| -bool Node::addEventListenerInternal(const AtomicString& eventType, PassRefPtr<EventListener> listener, const EventListenerOptions& options)
|
| +bool Node::addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
|
| {
|
| if (!EventTarget::addEventListenerInternal(eventType, listener, options))
|
| return false;
|
| @@ -1766,7 +1766,7 @@ bool Node::addEventListenerInternal(const AtomicString& eventType, PassRefPtr<Ev
|
| return true;
|
| }
|
|
|
| -bool Node::removeEventListenerInternal(const AtomicString& eventType, PassRefPtr<EventListener> listener, const EventListenerOptions& options)
|
| +bool Node::removeEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
|
| {
|
| if (!EventTarget::removeEventListenerInternal(eventType, listener, options))
|
| return false;
|
|
|