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

Side by Side Diff: Source/bindings/tests/results/core/V8TestInterface2.cpp

Issue 820183002: [bindings] Make v8_class[Constructor]::domTemplate use Local<> instead of Handle<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@new-branch
Patch Set: Created 6 years 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
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 "V8TestInterface2.h" 8 #include "V8TestInterface2.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 V8DOMConfiguration::installConstants(isolate, functionTemplate, prototyp eTemplate, &constantConfiguration, 1); 482 V8DOMConfiguration::installConstants(isolate, functionTemplate, prototyp eTemplate, &constantConfiguration, 1);
483 } 483 }
484 static_assert(1 == TestInterface2::CONST_VALUE_1, "the value of TestInterfac e2_CONST_VALUE_1 does not match with implementation"); 484 static_assert(1 == TestInterface2::CONST_VALUE_1, "the value of TestInterfac e2_CONST_VALUE_1 does not match with implementation");
485 functionTemplate->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerC onfiguration(TestInterface2V8Internal::indexedPropertyGetterCallback, TestInterf ace2V8Internal::indexedPropertySetterCallback, 0, TestInterface2V8Internal::inde xedPropertyDeleterCallback, indexedPropertyEnumerator<TestInterface2>)); 485 functionTemplate->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerC onfiguration(TestInterface2V8Internal::indexedPropertyGetterCallback, TestInterf ace2V8Internal::indexedPropertySetterCallback, 0, TestInterface2V8Internal::inde xedPropertyDeleterCallback, indexedPropertyEnumerator<TestInterface2>));
486 functionTemplate->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerCon figuration(TestInterface2V8Internal::namedPropertyGetterCallback, TestInterface2 V8Internal::namedPropertySetterCallback, TestInterface2V8Internal::namedProperty QueryCallback, TestInterface2V8Internal::namedPropertyDeleterCallback, TestInter face2V8Internal::namedPropertyEnumeratorCallback)); 486 functionTemplate->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerCon figuration(TestInterface2V8Internal::namedPropertyGetterCallback, TestInterface2 V8Internal::namedPropertySetterCallback, TestInterface2V8Internal::namedProperty QueryCallback, TestInterface2V8Internal::namedPropertyDeleterCallback, TestInter face2V8Internal::namedPropertyEnumeratorCallback));
487 487
488 // Custom toString template 488 // Custom toString template
489 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 489 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
490 } 490 }
491 491
492 v8::Handle<v8::FunctionTemplate> V8TestInterface2::domTemplate(v8::Isolate* isol ate) 492 v8::Local<v8::FunctionTemplate> V8TestInterface2::domTemplate(v8::Isolate* isola te)
493 { 493 {
494 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterface2Template); 494 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterface2Template);
495 } 495 }
496 496
497 bool V8TestInterface2::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* i solate) 497 bool V8TestInterface2::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* i solate)
498 { 498 {
499 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu e); 499 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu e);
500 } 500 }
501 501
502 v8::Handle<v8::Object> V8TestInterface2::findInstanceInPrototypeChain(v8::Handle <v8::Value> v8Value, v8::Isolate* isolate) 502 v8::Handle<v8::Object> V8TestInterface2::findInstanceInPrototypeChain(v8::Handle <v8::Value> v8Value, v8::Isolate* isolate)
(...skipping 10 matching lines...) Expand all
513 { 513 {
514 scriptWrappable->toImpl<TestInterface2>()->ref(); 514 scriptWrappable->toImpl<TestInterface2>()->ref();
515 } 515 }
516 516
517 void V8TestInterface2::derefObject(ScriptWrappable* scriptWrappable) 517 void V8TestInterface2::derefObject(ScriptWrappable* scriptWrappable)
518 { 518 {
519 scriptWrappable->toImpl<TestInterface2>()->deref(); 519 scriptWrappable->toImpl<TestInterface2>()->deref();
520 } 520 }
521 521
522 } // namespace blink 522 } // namespace blink
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/core/V8TestInterface2.h ('k') | Source/bindings/tests/results/core/V8TestInterface3.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698