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

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

Issue 921683002: make window interceptors DoNoCheckSecurity (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 5 years, 10 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 "V8TestInterface2.h" 8 #include "V8TestInterface2.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 functionTemplate->SetLength(0); 647 functionTemplate->SetLength(0);
648 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 648 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
649 ALLOW_UNUSED_LOCAL(instanceTemplate); 649 ALLOW_UNUSED_LOCAL(instanceTemplate);
650 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 650 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
651 ALLOW_UNUSED_LOCAL(prototypeTemplate); 651 ALLOW_UNUSED_LOCAL(prototypeTemplate);
652 if (RuntimeEnabledFeatures::featureNameEnabled()) { 652 if (RuntimeEnabledFeatures::featureNameEnabled()) {
653 static const V8DOMConfiguration::ConstantConfiguration constantConfigura tion = {"CONST_VALUE_1", 1, 0, 0, V8DOMConfiguration::ConstantTypeUnsignedShort} ; 653 static const V8DOMConfiguration::ConstantConfiguration constantConfigura tion = {"CONST_VALUE_1", 1, 0, 0, V8DOMConfiguration::ConstantTypeUnsignedShort} ;
654 V8DOMConfiguration::installConstants(isolate, functionTemplate, prototyp eTemplate, &constantConfiguration, 1); 654 V8DOMConfiguration::installConstants(isolate, functionTemplate, prototyp eTemplate, &constantConfiguration, 1);
655 } 655 }
656 static_assert(1 == TestInterface2::CONST_VALUE_1, "the value of TestInterfac e2_CONST_VALUE_1 does not match with implementation"); 656 static_assert(1 == TestInterface2::CONST_VALUE_1, "the value of TestInterfac e2_CONST_VALUE_1 does not match with implementation");
657 functionTemplate->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerC onfiguration(TestInterface2V8Internal::indexedPropertyGetterCallback, TestInterf ace2V8Internal::indexedPropertySetterCallback, 0, TestInterface2V8Internal::inde xedPropertyDeleterCallback, indexedPropertyEnumerator<TestInterface2>)); 657 {
658 functionTemplate->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerCon figuration(TestInterface2V8Internal::namedPropertyGetterCallback, TestInterface2 V8Internal::namedPropertySetterCallback, TestInterface2V8Internal::namedProperty QueryCallback, TestInterface2V8Internal::namedPropertyDeleterCallback, TestInter face2V8Internal::namedPropertyEnumeratorCallback)); 658 v8::IndexedPropertyHandlerConfiguration config(TestInterface2V8Internal: :indexedPropertyGetterCallback, TestInterface2V8Internal::indexedPropertySetterC allback, 0, TestInterface2V8Internal::indexedPropertyDeleterCallback, indexedPro pertyEnumerator<TestInterface2>);
659 functionTemplate->InstanceTemplate()->SetHandler(config);
660 }
661 {
662 v8::NamedPropertyHandlerConfiguration config(TestInterface2V8Internal::n amedPropertyGetterCallback, TestInterface2V8Internal::namedPropertySetterCallbac k, TestInterface2V8Internal::namedPropertyQueryCallback, TestInterface2V8Interna l::namedPropertyDeleterCallback, TestInterface2V8Internal::namedPropertyEnumerat orCallback);
663 functionTemplate->InstanceTemplate()->SetHandler(config);
664 }
659 static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKeyedI teratorConfiguration = { v8::Symbol::GetIterator, TestInterface2V8Internal::iter atorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts }; 665 static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKeyedI teratorConfiguration = { v8::Symbol::GetIterator, TestInterface2V8Internal::iter atorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts };
660 V8DOMConfiguration::installMethod(prototypeTemplate, defaultSignature, v8::D ontDelete, symbolKeyedIteratorConfiguration, isolate); 666 V8DOMConfiguration::installMethod(prototypeTemplate, defaultSignature, v8::D ontDelete, symbolKeyedIteratorConfiguration, isolate);
661 667
662 // Custom toString template 668 // Custom toString template
663 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 669 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
664 } 670 }
665 671
666 v8::Local<v8::FunctionTemplate> V8TestInterface2::domTemplate(v8::Isolate* isola te) 672 v8::Local<v8::FunctionTemplate> V8TestInterface2::domTemplate(v8::Isolate* isola te)
667 { 673 {
668 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterface2Template); 674 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterface2Template);
(...skipping 18 matching lines...) Expand all
687 { 693 {
688 scriptWrappable->toImpl<TestInterface2>()->ref(); 694 scriptWrappable->toImpl<TestInterface2>()->ref();
689 } 695 }
690 696
691 void V8TestInterface2::derefObject(ScriptWrappable* scriptWrappable) 697 void V8TestInterface2::derefObject(ScriptWrappable* scriptWrappable)
692 { 698 {
693 scriptWrappable->toImpl<TestInterface2>()->deref(); 699 scriptWrappable->toImpl<TestInterface2>()->deref();
694 } 700 }
695 701
696 } // namespace blink 702 } // namespace blink
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/core/V8TestInterface.cpp ('k') | Source/bindings/tests/results/core/V8TestInterface3.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698