Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: Source/bindings/core/v8/custom/V8EventTargetCustom.cpp

Issue 1233483002: Add counters for add/removeEventListener() called with one argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/events/EventTarget.h » ('j') | Source/core/frame/UseCounter.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
diff --git a/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp b/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
index b221b20afdedb32dec2913cc1621ff9485c0e3d5..24d991c8458b9c491ac6ff440b5a3a15803829ec 100644
--- a/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
+++ b/Source/bindings/core/v8/custom/V8EventTargetCustom.cpp
@@ -34,6 +34,7 @@
#include "bindings/core/v8/BindingSecurity.h"
#include "bindings/core/v8/V8EventListenerList.h"
#include "core/frame/LocalDOMWindow.h"
+#include "core/frame/UseCounter.h"
namespace blink {
@@ -46,6 +47,13 @@ static void addEventListenerMethodEpilogue(const v8::FunctionCallbackInfo<v8::Va
void V8EventTarget::addEventListenerMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(ExceptionState::ExecutionContext, "addEventListener", "EventTarget", info.Holder(), info.GetIsolate());
+ if (UNLIKELY(info.Length() < 2)) {
+ // TODO(philipj): Remove the custom bindings when usage allows. The
+ // generated bindings would thrown here instead. crbug.com/353484
+ UseCounter::countIfNotPrivateScript(info.GetIsolate(), callingExecutionContext(info.GetIsolate()),
+ info.Length() == 0 ? UseCounter::AddEventListenerNoArguments : UseCounter::AddEventListenerOneArgument);
+ return;
+ }
EventTarget* impl = V8EventTarget::toImpl(info.Holder());
if (LocalDOMWindow* window = impl->toDOMWindow()) {
if (!BindingSecurity::shouldAllowAccessToFrame(info.GetIsolate(), window->frame(), exceptionState)) {
@@ -59,20 +67,10 @@ void V8EventTarget::addEventListenerMethodCustom(const v8::FunctionCallbackInfo<
RefPtr<EventListener> listener;
bool capture;
{
- if (UNLIKELY(info.Length() <= 0)) {
- impl->addEventListener();
- addEventListenerMethodEpilogue(info, impl);
- return;
- }
type = info[0];
if (!type.prepare())
return;
listener = V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), info[1], false, ListenerFindOrCreate);
- if (UNLIKELY(info.Length() <= 2)) {
- impl->addEventListener(type, listener);
- addEventListenerMethodEpilogue(info, impl);
- return;
- }
capture = toBoolean(info.GetIsolate(), info[2], exceptionState);
if (exceptionState.throwIfNeeded())
return;
@@ -90,6 +88,13 @@ static void removeEventListenerMethodEpilogue(const v8::FunctionCallbackInfo<v8:
void V8EventTarget::removeEventListenerMethodCustom(const v8::FunctionCallbackInfo<v8::Value>& info)
{
ExceptionState exceptionState(ExceptionState::ExecutionContext, "removeEventListener", "EventTarget", info.Holder(), info.GetIsolate());
+ if (UNLIKELY(info.Length() < 2)) {
+ // TODO(philipj): Remove the custom bindings when usage allows. The
+ // generated bindings would thrown here instead. crbug.com/353484
+ UseCounter::countIfNotPrivateScript(info.GetIsolate(), callingExecutionContext(info.GetIsolate()),
+ info.Length() == 0 ? UseCounter::RemoveEventListenerNoArguments : UseCounter::RemoveEventListenerOneArgument);
+ return;
+ }
EventTarget* impl = V8EventTarget::toImpl(info.Holder());
if (LocalDOMWindow* window = impl->toDOMWindow()) {
if (!BindingSecurity::shouldAllowAccessToFrame(info.GetIsolate(), window->frame(), exceptionState)) {
@@ -103,20 +108,10 @@ void V8EventTarget::removeEventListenerMethodCustom(const v8::FunctionCallbackIn
RefPtr<EventListener> listener;
bool capture;
{
- if (UNLIKELY(info.Length() <= 0)) {
- impl->removeEventListener();
- removeEventListenerMethodEpilogue(info, impl);
- return;
- }
type = info[0];
if (!type.prepare())
return;
listener = V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), info[1], false, ListenerFindOnly);
- if (UNLIKELY(info.Length() <= 2)) {
- impl->removeEventListener(type, listener);
- removeEventListenerMethodEpilogue(info, impl);
- return;
- }
capture = toBoolean(info.GetIsolate(), info[2], exceptionState);
if (exceptionState.throwIfNeeded())
return;
« no previous file with comments | « no previous file | Source/core/events/EventTarget.h » ('j') | Source/core/frame/UseCounter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698