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

Side by Side Diff: Source/bindings/tests/results/V8TestTypedefs.cpp

Issue 456683002: bindings: Introduces type-check for the internal pointers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
6 6
7 #include "config.h" 7 #include "config.h"
8 #include "V8TestTypedefs.h" 8 #include "V8TestTypedefs.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu e); 343 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu e);
344 } 344 }
345 345
346 v8::Handle<v8::Object> V8TestTypedefs::findInstanceInPrototypeChain(v8::Handle<v 8::Value> v8Value, v8::Isolate* isolate) 346 v8::Handle<v8::Object> V8TestTypedefs::findInstanceInPrototypeChain(v8::Handle<v 8::Value> v8Value, v8::Isolate* isolate)
347 { 347 {
348 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, v8Value); 348 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, v8Value);
349 } 349 }
350 350
351 TestTypedefs* V8TestTypedefs::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Ha ndle<v8::Value> value) 351 TestTypedefs* V8TestTypedefs::toNativeWithTypeCheck(v8::Isolate* isolate, v8::Ha ndle<v8::Value> value)
352 { 352 {
353 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0; 353 return hasInstance(value, isolate) ? fromInternalPointer(blink::toInternalPo inter(v8::Handle<v8::Object>::Cast(value))) : 0;
354 } 354 }
355 355
356 v8::Handle<v8::Object> wrap(TestTypedefs* impl, v8::Handle<v8::Object> creationC ontext, v8::Isolate* isolate) 356 v8::Handle<v8::Object> wrap(TestTypedefs* impl, v8::Handle<v8::Object> creationC ontext, v8::Isolate* isolate)
357 { 357 {
358 ASSERT(impl); 358 ASSERT(impl);
359 ASSERT(!DOMDataStore::containsWrapper<V8TestTypedefs>(impl, isolate)); 359 ASSERT(!DOMDataStore::containsWrapper<V8TestTypedefs>(impl, isolate));
360 return V8TestTypedefs::createWrapper(impl, creationContext, isolate); 360 return V8TestTypedefs::createWrapper(impl, creationContext, isolate);
361 } 361 }
362 362
363 v8::Handle<v8::Object> V8TestTypedefs::createWrapper(PassRefPtr<TestTypedefs> im pl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 363 v8::Handle<v8::Object> V8TestTypedefs::createWrapper(PassRefPtr<TestTypedefs> im pl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
364 { 364 {
365 ASSERT(impl); 365 ASSERT(impl);
366 ASSERT(!DOMDataStore::containsWrapper<V8TestTypedefs>(impl.get(), isolate)); 366 ASSERT(!DOMDataStore::containsWrapper<V8TestTypedefs>(impl.get(), isolate));
367 if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) { 367 if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) {
368 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get ())->typeInfo(); 368 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get ())->typeInfo();
369 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper TypeInfo. These will both have 369 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper TypeInfo. These will both have
370 // the same object de-ref functions, though, so use that as the basis of the check. 370 // the same object de-ref functions, though, so use that as the basis of the check.
371 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == wrapperTypeInfo.derefObjectFunction); 371 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == wrapperTypeInfo.derefObjectFunction);
372 } 372 }
373 373
374 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext , &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); 374 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext , &wrapperTypeInfo, toInternalPointer(impl.get()), isolate);
375 if (UNLIKELY(wrapper.IsEmpty())) 375 if (UNLIKELY(wrapper.IsEmpty()))
376 return wrapper; 376 return wrapper;
377 377
378 installPerContextEnabledProperties(wrapper, impl.get(), isolate); 378 installPerContextEnabledProperties(wrapper, impl.get(), isolate);
379 V8DOMWrapper::associateObjectWithWrapper<V8TestTypedefs>(impl, &wrapperTypeI nfo, wrapper, isolate, WrapperConfiguration::Independent); 379 V8DOMWrapper::associateObjectWithWrapper<V8TestTypedefs>(impl, &wrapperTypeI nfo, wrapper, isolate, WrapperConfiguration::Independent);
380 return wrapper; 380 return wrapper;
381 } 381 }
382 382
383 void V8TestTypedefs::derefObject(void* object) 383 void V8TestTypedefs::derefObject(ScriptWrappableBase* internalPointer)
384 { 384 {
385 fromInternalPointer(object)->deref(); 385 fromInternalPointer(internalPointer)->deref();
386 } 386 }
387 387
388 template<> 388 template<>
389 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate) 389 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate)
390 { 390 {
391 return toV8(impl, creationContext, isolate); 391 return toV8(impl, creationContext, isolate);
392 } 392 }
393 393
394 } // namespace blink 394 } // namespace blink
OLDNEW
« Source/bindings/templates/interface.h ('K') | « Source/bindings/tests/results/V8TestTypedefs.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698