| Index: third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp b/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
|
| index 1fc9a0d2ab4a551d154e80b852c6241a96327522..7d53fc5580ab9aef1342428ad1958a20908c09ed 100644
|
| --- a/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
|
| +++ b/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
|
| @@ -103,7 +103,7 @@ ExecutionContext* NetworkInformation::executionContext() const
|
| return ActiveDOMObject::executionContext();
|
| }
|
|
|
| -bool NetworkInformation::addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
|
| +bool NetworkInformation::addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener> listener, const EventListenerOptions& options)
|
| {
|
| if (!EventTargetWithInlineData::addEventListenerInternal(eventType, listener, options))
|
| return false;
|
| @@ -111,7 +111,7 @@ bool NetworkInformation::addEventListenerInternal(const AtomicString& eventType,
|
| return true;
|
| }
|
|
|
| -bool NetworkInformation::removeEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener> listener, const EventListenerOptions& options)
|
| +bool NetworkInformation::removeEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener> listener, const EventListenerOptions& options)
|
| {
|
| if (!EventTargetWithInlineData::removeEventListenerInternal(eventType, listener, options))
|
| return false;
|
|
|