Esempio n. 1
0
v8::Handle<v8::Boolean> V8Storage::namedPropertyDeleter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    return storageDeleter(name, info);
}
v8::Handle<v8::Boolean> V8Storage::namedPropertyDeleter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.Storage.NamedPropertyDeleter");
    return storageDeleter(name, info);
}
Esempio n. 3
0
v8::Handle<v8::Boolean> V8Storage::indexedPropertyDeleter(uint32_t index, const v8::AccessorInfo& info)
{
    v8::Handle<v8::Integer> indexV8 = v8Integer(index, info.GetIsolate());
    return storageDeleter(indexV8->ToString(), info);
}
v8::Handle<v8::Boolean> V8Storage::indexedPropertyDeleter(uint32_t index, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.Storage.IndexedPropertyDeleter");
    v8::Local<v8::Integer> indexV8 = v8::Integer::New(index);
    return storageDeleter(indexV8->ToString(), info);
}