| 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 bf2f203ef1afdaae9122f24b56e7b07619295efb..494dfd7ceb80e2e0298d060fd3ef95bd612f8488 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(),
|
|
|