| Index: third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
|
| diff --git a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
|
| index 560b3cdd5c94ba4b248f4dd66f5611a09e0237f4..ffa6932ec019b6af8acff41ecf545aff0c652752 100644
|
| --- a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
|
| +++ b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
|
| @@ -71,12 +71,11 @@ ExecutionContext* PresentationRequest::getExecutionContext() const
|
| return ActiveDOMObject::getExecutionContext();
|
| }
|
|
|
| -bool PresentationRequest::addEventListenerInternal(const AtomicString& eventType, EventListener* listener, const EventListenerOptions& options)
|
| +void PresentationRequest::addedEventListener(const AtomicString& eventType, RegisteredEventListener& registeredListener)
|
| {
|
| + EventTargetWithInlineData::addedEventListener(eventType, registeredListener);
|
| if (eventType == EventTypeNames::connectionavailable)
|
| UseCounter::count(getExecutionContext(), UseCounter::PresentationRequestConnectionAvailableEventListener);
|
| -
|
| - return EventTarget::addEventListenerInternal(eventType, listener, options);
|
| }
|
|
|
| bool PresentationRequest::hasPendingActivity() const
|
|
|