OLD | NEW |
1 /* | 1 /* |
2 This file is part of the Blink open source project. | 2 This file is part of the Blink open source project. |
3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! | 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! |
4 | 4 |
5 This library is free software; you can redistribute it and/or | 5 This library is free software; you can redistribute it and/or |
6 modify it under the terms of the GNU Library General Public | 6 modify it under the terms of the GNU Library General Public |
7 License as published by the Free Software Foundation; either | 7 License as published by the Free Software Foundation; either |
8 version 2 of the License, or (at your option) any later version. | 8 version 2 of the License, or (at your option) any later version. |
9 | 9 |
10 This library is distributed in the hope that it will be useful, | 10 This library is distributed in the hope that it will be useful, |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 { | 220 { |
221 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, MainWorld) | 221 return V8PerIsolateData::from(isolate)->hasInstance(&info, value, MainWorld) |
222 || V8PerIsolateData::from(isolate)->hasInstance(&info, value, IsolatedWo
rld) | 222 || V8PerIsolateData::from(isolate)->hasInstance(&info, value, IsolatedWo
rld) |
223 || V8PerIsolateData::from(isolate)->hasInstance(&info, value, WorkerWorl
d); | 223 || V8PerIsolateData::from(isolate)->hasInstance(&info, value, WorkerWorl
d); |
224 } | 224 } |
225 | 225 |
226 | 226 |
227 v8::Handle<v8::Object> V8TestSerializedScriptValueInterface::createWrapper(PassR
efPtr<TestSerializedScriptValueInterface> impl, v8::Handle<v8::Object> creationC
ontext, v8::Isolate* isolate) | 227 v8::Handle<v8::Object> V8TestSerializedScriptValueInterface::createWrapper(PassR
efPtr<TestSerializedScriptValueInterface> impl, v8::Handle<v8::Object> creationC
ontext, v8::Isolate* isolate) |
228 { | 228 { |
229 ASSERT(impl.get()); | 229 ASSERT(impl.get()); |
230 ASSERT(DOMDataStore::getWrapper(impl.get(), isolate).IsEmpty()); | 230 ASSERT(DOMDataStore::getWrapper<V8TestSerializedScriptValueInterface>(impl.g
et(), isolate).IsEmpty()); |
231 | 231 |
232 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &info, impl.get(), isolate); | 232 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &info, toInternalPointer(impl.get()), isolate); |
233 if (UNLIKELY(wrapper.IsEmpty())) | 233 if (UNLIKELY(wrapper.IsEmpty())) |
234 return wrapper; | 234 return wrapper; |
235 installPerContextProperties(wrapper, impl.get(), isolate); | 235 installPerContextProperties(wrapper, impl.get(), isolate); |
236 V8DOMWrapper::associateObjectWithWrapper(impl, &info, wrapper, isolate, Wrap
perConfiguration::Independent); | 236 V8DOMWrapper::associateObjectWithWrapper<V8TestSerializedScriptValueInterfac
e>(impl, &info, wrapper, isolate, WrapperConfiguration::Independent); |
237 return wrapper; | 237 return wrapper; |
238 } | 238 } |
239 void V8TestSerializedScriptValueInterface::derefObject(void* object) | 239 void V8TestSerializedScriptValueInterface::derefObject(void* object) |
240 { | 240 { |
241 static_cast<TestSerializedScriptValueInterface*>(object)->deref(); | 241 fromInternalPointer(object)->deref(); |
242 } | 242 } |
243 | 243 |
244 } // namespace WebCore | 244 } // namespace WebCore |
245 | 245 |
246 #endif // ENABLE(Condition1) || ENABLE(Condition2) | 246 #endif // ENABLE(Condition1) || ENABLE(Condition2) |
OLD | NEW |