| 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 "V8TestSpecialOperationsNotEnumerable.h" | 8 #include "V8TestSpecialOperationsNotEnumerable.h" |
| 9 | 9 |
| 10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 v8::Local<v8::Signature> defaultSignature; | 79 v8::Local<v8::Signature> defaultSignature; |
| 80 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func
tionTemplate, "TestSpecialOperationsNotEnumerable", v8::Local<v8::FunctionTempla
te>(), V8TestSpecialOperationsNotEnumerable::internalFieldCount, | 80 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func
tionTemplate, "TestSpecialOperationsNotEnumerable", v8::Local<v8::FunctionTempla
te>(), V8TestSpecialOperationsNotEnumerable::internalFieldCount, |
| 81 0, 0, | 81 0, 0, |
| 82 0, 0, | 82 0, 0, |
| 83 0, 0); | 83 0, 0); |
| 84 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT
emplate(); | 84 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT
emplate(); |
| 85 ALLOW_UNUSED_LOCAL(instanceTemplate); | 85 ALLOW_UNUSED_LOCAL(instanceTemplate); |
| 86 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp
eTemplate(); | 86 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp
eTemplate(); |
| 87 ALLOW_UNUSED_LOCAL(prototypeTemplate); | 87 ALLOW_UNUSED_LOCAL(prototypeTemplate); |
| 88 functionTemplate->InstanceTemplate()->SetHandler(v8::IndexedPropertyHandlerC
onfiguration(TestSpecialOperationsNotEnumerableV8Internal::indexedPropertyGetter
Callback, 0, 0, 0, 0)); | 88 { |
| 89 functionTemplate->InstanceTemplate()->SetHandler(v8::NamedPropertyHandlerCon
figuration(TestSpecialOperationsNotEnumerableV8Internal::namedPropertyGetterCall
back, 0, 0, 0, 0)); | 89 v8::IndexedPropertyHandlerConfiguration config(TestSpecialOperationsNotE
numerableV8Internal::indexedPropertyGetterCallback, 0, 0, 0, 0); |
| 90 functionTemplate->InstanceTemplate()->SetHandler(config); |
| 91 } |
| 92 { |
| 93 v8::NamedPropertyHandlerConfiguration config(TestSpecialOperationsNotEnu
merableV8Internal::namedPropertyGetterCallback, 0, 0, 0, 0); |
| 94 functionTemplate->InstanceTemplate()->SetHandler(config); |
| 95 } |
| 90 | 96 |
| 91 // Custom toString template | 97 // Custom toString template |
| 92 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData:
:from(isolate)->toStringTemplate()); | 98 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData:
:from(isolate)->toStringTemplate()); |
| 93 } | 99 } |
| 94 | 100 |
| 95 v8::Local<v8::FunctionTemplate> V8TestSpecialOperationsNotEnumerable::domTemplat
e(v8::Isolate* isolate) | 101 v8::Local<v8::FunctionTemplate> V8TestSpecialOperationsNotEnumerable::domTemplat
e(v8::Isolate* isolate) |
| 96 { | 102 { |
| 97 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI
nfo*>(&wrapperTypeInfo), installV8TestSpecialOperationsNotEnumerableTemplate); | 103 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI
nfo*>(&wrapperTypeInfo), installV8TestSpecialOperationsNotEnumerableTemplate); |
| 98 } | 104 } |
| 99 | 105 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 116 { | 122 { |
| 117 scriptWrappable->toImpl<TestSpecialOperationsNotEnumerable>()->ref(); | 123 scriptWrappable->toImpl<TestSpecialOperationsNotEnumerable>()->ref(); |
| 118 } | 124 } |
| 119 | 125 |
| 120 void V8TestSpecialOperationsNotEnumerable::derefObject(ScriptWrappable* scriptWr
appable) | 126 void V8TestSpecialOperationsNotEnumerable::derefObject(ScriptWrappable* scriptWr
appable) |
| 121 { | 127 { |
| 122 scriptWrappable->toImpl<TestSpecialOperationsNotEnumerable>()->deref(); | 128 scriptWrappable->toImpl<TestSpecialOperationsNotEnumerable>()->deref(); |
| 123 } | 129 } |
| 124 | 130 |
| 125 } // namespace blink | 131 } // namespace blink |
| OLD | NEW |