| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index 48200a2fdd00b7ced8581c2ba83e053e005e444a..68a4cd319c782ec5f584bef629b5a29c968ab695 100644
|
| --- a/Source/bindings/v8/V8Binding.h
|
| +++ b/Source/bindings/v8/V8Binding.h
|
| @@ -696,6 +696,14 @@ namespace WebCore {
|
| // Each specialized implementation will be generated.
|
| template<typename T>
|
| v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| +
|
| + // Result values for platform object 'deleter' methods,
|
| + // http://www.w3.org/TR/WebIDL/#delete
|
| + enum DeleteResult {
|
| + DeleteSuccess,
|
| + DeleteReject,
|
| + DeleteUnknownProperty
|
| + };
|
| } // namespace WebCore
|
|
|
| #endif // V8Binding_h
|
|
|