| Index: Source/bindings/v8/V8EventListenerList.h
|
| diff --git a/Source/bindings/v8/V8EventListenerList.h b/Source/bindings/v8/V8EventListenerList.h
|
| index 8df7e1a941876cbbc8a799cac094a65927609a14..446adc76919c2a38dfff651f851eda2c53a5593b 100644
|
| --- a/Source/bindings/v8/V8EventListenerList.h
|
| +++ b/Source/bindings/v8/V8EventListenerList.h
|
| @@ -50,7 +50,7 @@ public:
|
| {
|
| ASSERT(isolate->InContext());
|
| if (!value->IsObject())
|
| - return 0;
|
| + return nullptr;
|
|
|
| v8::Handle<v8::String> wrapperProperty = getHiddenProperty(false, isolate);
|
| return doFindWrapper(v8::Local<v8::Object>::Cast(value), wrapperProperty, isolate);
|
| @@ -91,7 +91,7 @@ PassRefPtr<V8EventListener> V8EventListenerList::findOrCreateWrapper(v8::Local<v
|
| if (!value->IsObject()
|
| // Non-callable attribute setter input is treated as null (no wrapper)
|
| || (isAttribute && !value->IsFunction()))
|
| - return 0;
|
| + return nullptr;
|
|
|
| v8::Local<v8::Object> object = v8::Local<v8::Object>::Cast(value);
|
| v8::Handle<v8::String> wrapperProperty = getHiddenProperty(isAttribute, isolate);
|
|
|