| Index: third_party/WebKit/Source/core/events/EventTarget.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/EventTarget.cpp b/third_party/WebKit/Source/core/events/EventTarget.cpp
|
| index a125d77160ca4b119ff44e2d16172b7f283eb566..3665eaa8615f57d42f07d947f37a3630a8f6dc44 100644
|
| --- a/third_party/WebKit/Source/core/events/EventTarget.cpp
|
| +++ b/third_party/WebKit/Source/core/events/EventTarget.cpp
|
| @@ -305,6 +305,11 @@ void EventTarget::addedEventListener(
|
| UseCounter::count(executingWindow->document(),
|
| UseCounter::AuxclickAddListenerCount);
|
| }
|
| + } else if (eventType == EventTypeNames::appinstalled) {
|
| + if (LocalDOMWindow* executingWindow = this->executingWindow()) {
|
| + UseCounter::count(executingWindow->document(),
|
| + UseCounter::AppInstalledEventAddListener);
|
| + }
|
| } else if (EventUtil::isPointerEventType(eventType)) {
|
| if (LocalDOMWindow* executingWindow = this->executingWindow()) {
|
| UseCounter::count(executingWindow->document(),
|
|
|