| OLD | NEW |
| 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 "V8TestInterface3.h" | 8 #include "V8TestInterface3.h" |
| 9 | 9 |
| 10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 V8TestInterface3Methods, WTF_ARRAY_LENGTH(V8TestInterface3Methods)); | 287 V8TestInterface3Methods, WTF_ARRAY_LENGTH(V8TestInterface3Methods)); |
| 288 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT
emplate(); | 288 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT
emplate(); |
| 289 ALLOW_UNUSED_LOCAL(instanceTemplate); | 289 ALLOW_UNUSED_LOCAL(instanceTemplate); |
| 290 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp
eTemplate(); | 290 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp
eTemplate(); |
| 291 ALLOW_UNUSED_LOCAL(prototypeTemplate); | 291 ALLOW_UNUSED_LOCAL(prototypeTemplate); |
| 292 { | 292 { |
| 293 v8::IndexedPropertyHandlerConfiguration config(TestInterface3V8Internal:
:indexedPropertyGetterCallback, TestInterface3V8Internal::indexedPropertySetterC
allback, 0, TestInterface3V8Internal::indexedPropertyDeleterCallback, indexedPro
pertyEnumerator<TestInterface3>); | 293 v8::IndexedPropertyHandlerConfiguration config(TestInterface3V8Internal:
:indexedPropertyGetterCallback, TestInterface3V8Internal::indexedPropertySetterC
allback, 0, TestInterface3V8Internal::indexedPropertyDeleterCallback, indexedPro
pertyEnumerator<TestInterface3>); |
| 294 functionTemplate->InstanceTemplate()->SetHandler(config); | 294 functionTemplate->InstanceTemplate()->SetHandler(config); |
| 295 } | 295 } |
| 296 { | 296 { |
| 297 v8::NamedPropertyHandlerConfiguration config(TestInterface3V8Internal::n
amedPropertyGetterCallback, TestInterface3V8Internal::namedPropertySetterCallbac
k, TestInterface3V8Internal::namedPropertyQueryCallback, TestInterface3V8Interna
l::namedPropertyDeleterCallback, TestInterface3V8Internal::namedPropertyEnumerat
orCallback); | 297 int flags = static_cast<int>(v8::PropertyHandlerFlags::kOnlyInterceptStr
ings); |
| 298 config.flags = static_cast<v8::PropertyHandlerFlags>(static_cast<int>(co
nfig.flags) | static_cast<int>(v8::PropertyHandlerFlags::kOnlyInterceptStrings))
; | 298 flags |= static_cast<int>(v8::PropertyHandlerFlags::kNonMasking); |
| 299 config.flags = static_cast<v8::PropertyHandlerFlags>(static_cast<int>(co
nfig.flags) | static_cast<int>(v8::PropertyHandlerFlags::kNonMasking)); | 299 v8::NamedPropertyHandlerConfiguration config(TestInterface3V8Internal::n
amedPropertyGetterCallback, TestInterface3V8Internal::namedPropertySetterCallbac
k, TestInterface3V8Internal::namedPropertyQueryCallback, TestInterface3V8Interna
l::namedPropertyDeleterCallback, TestInterface3V8Internal::namedPropertyEnumerat
orCallback, v8::Handle<v8::Value>(), static_cast<v8::PropertyHandlerFlags>(flags
)); |
| 300 functionTemplate->InstanceTemplate()->SetHandler(config); | 300 functionTemplate->InstanceTemplate()->SetHandler(config); |
| 301 } | 301 } |
| 302 if (RuntimeEnabledFeatures::featureNameEnabled()) { | 302 if (RuntimeEnabledFeatures::featureNameEnabled()) { |
| 303 static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKe
yedIteratorConfiguration = { v8::Symbol::GetIterator, TestInterface3V8Internal::
iteratorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts }; | 303 static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolKe
yedIteratorConfiguration = { v8::Symbol::GetIterator, TestInterface3V8Internal::
iteratorMethodCallback, 0, V8DOMConfiguration::ExposedToAllScripts }; |
| 304 V8DOMConfiguration::installMethod(isolate, prototypeTemplate, defaultSig
nature, v8::DontDelete, symbolKeyedIteratorConfiguration); | 304 V8DOMConfiguration::installMethod(isolate, prototypeTemplate, defaultSig
nature, v8::DontDelete, symbolKeyedIteratorConfiguration); |
| 305 } | 305 } |
| 306 if (RuntimeEnabledFeatures::featureNameEnabled()) { | 306 if (RuntimeEnabledFeatures::featureNameEnabled()) { |
| 307 const V8DOMConfiguration::MethodConfiguration keysMethodConfiguration =
{ | 307 const V8DOMConfiguration::MethodConfiguration keysMethodConfiguration =
{ |
| 308 "keys", TestInterface3V8Internal::keysMethodCallback, 0, 0, V8DOMCon
figuration::ExposedToAllScripts, | 308 "keys", TestInterface3V8Internal::keysMethodCallback, 0, 0, V8DOMCon
figuration::ExposedToAllScripts, |
| 309 }; | 309 }; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 { | 362 { |
| 363 scriptWrappable->toImpl<TestInterface3>()->ref(); | 363 scriptWrappable->toImpl<TestInterface3>()->ref(); |
| 364 } | 364 } |
| 365 | 365 |
| 366 void V8TestInterface3::derefObject(ScriptWrappable* scriptWrappable) | 366 void V8TestInterface3::derefObject(ScriptWrappable* scriptWrappable) |
| 367 { | 367 { |
| 368 scriptWrappable->toImpl<TestInterface3>()->deref(); | 368 scriptWrappable->toImpl<TestInterface3>()->deref(); |
| 369 } | 369 } |
| 370 | 370 |
| 371 } // namespace blink | 371 } // namespace blink |
| OLD | NEW |