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 "V8TestInterfaceEventTarget.h" | 8 #include "V8TestInterfaceEventTarget.h" |
9 | 9 |
10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 namespace TestInterfaceEventTargetV8Internal { | 31 namespace TestInterfaceEventTargetV8Internal { |
32 | 32 |
33 } // namespace TestInterfaceEventTargetV8Internal | 33 } // namespace TestInterfaceEventTargetV8Internal |
34 | 34 |
35 const WrapperTypeInfo V8TestInterfaceEventTargetConstructor::wrapperTypeInfo = {
gin::kEmbedderBlink, V8TestInterfaceEventTargetConstructor::domTemplate, V8Test
InterfaceEventTarget::refObject, V8TestInterfaceEventTarget::derefObject, V8Test
InterfaceEventTarget::trace, 0, V8TestInterfaceEventTarget::toEventTarget, 0, V8
TestInterfaceEventTarget::installConditionallyEnabledMethods, V8TestInterfaceEve
ntTarget::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperType
ObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Independent, W
rapperTypeInfo::WillBeGarbageCollectedObject }; | 35 const WrapperTypeInfo V8TestInterfaceEventTargetConstructor::wrapperTypeInfo = {
gin::kEmbedderBlink, V8TestInterfaceEventTargetConstructor::domTemplate, V8Test
InterfaceEventTarget::refObject, V8TestInterfaceEventTarget::derefObject, V8Test
InterfaceEventTarget::trace, 0, V8TestInterfaceEventTarget::toEventTarget, 0, V8
TestInterfaceEventTarget::installConditionallyEnabledMethods, V8TestInterfaceEve
ntTarget::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperType
ObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Independent, W
rapperTypeInfo::WillBeGarbageCollectedObject }; |
36 | 36 |
37 static void V8TestInterfaceEventTargetConstructorCallback(const v8::FunctionCall
backInfo<v8::Value>& info) | 37 static void V8TestInterfaceEventTargetConstructorCallback(const v8::FunctionCall
backInfo<v8::Value>& info) |
38 { | 38 { |
39 if (!info.IsConstructCall()) { | 39 if (!info.IsConstructCall()) { |
40 V8ThrowException::throwTypeError(ExceptionMessages::constructorNotCallab
leAsFunction("Name"), info.GetIsolate()); | 40 V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessages::c
onstructorNotCallableAsFunction("Name")); |
41 return; | 41 return; |
42 } | 42 } |
43 | 43 |
44 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExis
tingObject) { | 44 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExis
tingObject) { |
45 v8SetReturnValue(info, info.Holder()); | 45 v8SetReturnValue(info, info.Holder()); |
46 return; | 46 return; |
47 } | 47 } |
48 Document& document = *toDocument(currentExecutionContext(info.GetIsolate()))
; | 48 Document& document = *toDocument(currentExecutionContext(info.GetIsolate()))
; |
49 RefPtrWillBeRawPtr<TestInterfaceEventTarget> impl = TestInterfaceEventTarget
::createForJSConstructor(document); | 49 RefPtrWillBeRawPtr<TestInterfaceEventTarget> impl = TestInterfaceEventTarget
::createForJSConstructor(document); |
50 v8::Handle<v8::Object> wrapper = info.Holder(); | 50 v8::Handle<v8::Object> wrapper = info.Holder(); |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 #endif | 128 #endif |
129 } | 129 } |
130 | 130 |
131 template<> | 131 template<> |
132 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8
::Object> creationContext, v8::Isolate* isolate) | 132 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8
::Object> creationContext, v8::Isolate* isolate) |
133 { | 133 { |
134 return toV8(impl, creationContext, isolate); | 134 return toV8(impl, creationContext, isolate); |
135 } | 135 } |
136 | 136 |
137 } // namespace blink | 137 } // namespace blink |
OLD | NEW |