| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! | |
| 6 | |
| 7 #include "config.h" | |
| 8 #if ENABLE(CONDITION) | |
| 9 #include "V8TestInterfacePython.h" | |
| 10 | |
| 11 #include "RuntimeEnabledFeatures.h" | |
| 12 #include "V8Node.h" | |
| 13 #include "V8TestImplementedAs.h" | |
| 14 #include "V8TestInterfaceEmpty.h" | |
| 15 #include "bindings/tests/idls/TestImplements.h" | |
| 16 #include "bindings/tests/idls/TestImplements2Implementation.h" | |
| 17 #include "bindings/tests/idls/TestPartialInterfacePython.h" | |
| 18 #include "bindings/tests/idls/TestPartialInterfacePythonImplementation.h" | |
| 19 #include "bindings/v8/ExceptionState.h" | |
| 20 #include "bindings/v8/ScriptValue.h" | |
| 21 #include "bindings/v8/V8AbstractEventListener.h" | |
| 22 #include "bindings/v8/V8DOMConfiguration.h" | |
| 23 #include "bindings/v8/V8EventListenerList.h" | |
| 24 #include "bindings/v8/V8HiddenValue.h" | |
| 25 #include "bindings/v8/V8ObjectConstructor.h" | |
| 26 #include "core/dom/ContextFeatures.h" | |
| 27 #include "core/dom/Document.h" | |
| 28 #include "platform/TraceEvent.h" | |
| 29 #include "wtf/GetPtr.h" | |
| 30 #include "wtf/RefPtr.h" | |
| 31 | |
| 32 namespace WebCore { | |
| 33 | |
| 34 static void initializeScriptWrappableForInterface(TestInterfacePythonImplementat
ion* object) | |
| 35 { | |
| 36 if (ScriptWrappable::wrapperCanBeStoredInObject(object)) | |
| 37 ScriptWrappable::setTypeInfoInObject(object, &V8TestInterfacePython::wra
pperTypeInfo); | |
| 38 else | |
| 39 ASSERT_NOT_REACHED(); | |
| 40 } | |
| 41 | |
| 42 } // namespace WebCore | |
| 43 | |
| 44 void webCoreInitializeScriptWrappableForInterface(WebCore::TestInterfacePythonIm
plementation* object) | |
| 45 { | |
| 46 WebCore::initializeScriptWrappableForInterface(object); | |
| 47 } | |
| 48 | |
| 49 namespace WebCore { | |
| 50 const WrapperTypeInfo V8TestInterfacePython::wrapperTypeInfo = { gin::kEmbedderB
link, V8TestInterfacePython::domTemplate, V8TestInterfacePython::derefObject, V8
TestInterfacePython::toActiveDOMObject, 0, V8TestInterfacePython::visitDOMWrappe
r, V8TestInterfacePython::installPerContextEnabledMethods, &V8TestInterfaceEmpty
::wrapperTypeInfo, WrapperTypeObjectPrototype, false }; | |
| 51 | |
| 52 namespace TestInterfacePythonImplementationV8Internal { | |
| 53 | |
| 54 template <typename T> void V8_USE(T) { } | |
| 55 | |
| 56 static void testInterfacePythonAttributeAttributeGetter(const v8::PropertyCallba
ckInfo<v8::Value>& info) | |
| 57 { | |
| 58 v8::Handle<v8::Object> holder = info.Holder(); | |
| 59 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 60 v8SetReturnValueFast(info, WTF::getPtr(impl->testInterfacePythonAttribute())
, impl); | |
| 61 } | |
| 62 | |
| 63 static void testInterfacePythonAttributeAttributeGetterCallback(v8::Local<v8::St
ring>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 64 { | |
| 65 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 66 TestInterfacePythonImplementationV8Internal::testInterfacePythonAttributeAtt
ributeGetter(info); | |
| 67 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 68 } | |
| 69 | |
| 70 static void testInterfacePythonAttributeAttributeSetter(v8::Local<v8::Value> v8V
alue, const v8::PropertyCallbackInfo<void>& info) | |
| 71 { | |
| 72 v8::Handle<v8::Object> holder = info.Holder(); | |
| 73 ExceptionState exceptionState(ExceptionState::SetterContext, "testInterfaceP
ythonAttribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 74 if (!isUndefinedOrNull(v8Value) && !V8TestInterfacePython::hasInstance(v8Val
ue, info.GetIsolate())) { | |
| 75 exceptionState.throwTypeError("The provided value is not of type 'TestIn
terfacePython'."); | |
| 76 exceptionState.throwIfNeeded(); | |
| 77 return; | |
| 78 } | |
| 79 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 80 V8TRYCATCH_VOID(TestInterfacePythonImplementation*, cppValue, V8TestInterfac
ePython::toNativeWithTypeCheck(info.GetIsolate(), v8Value)); | |
| 81 impl->setTestInterfacePythonAttribute(WTF::getPtr(cppValue)); | |
| 82 } | |
| 83 | |
| 84 static void testInterfacePythonAttributeAttributeSetterCallback(v8::Local<v8::St
ring>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 85 { | |
| 86 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 87 TestInterfacePythonImplementationV8Internal::testInterfacePythonAttributeAtt
ributeSetter(v8Value, info); | |
| 88 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 89 } | |
| 90 | |
| 91 static void staticStringAttributeAttributeGetter(const v8::PropertyCallbackInfo<
v8::Value>& info) | |
| 92 { | |
| 93 v8SetReturnValueString(info, TestInterfacePythonImplementation::staticString
Attribute(), info.GetIsolate()); | |
| 94 } | |
| 95 | |
| 96 static void staticStringAttributeAttributeGetterCallback(v8::Local<v8::String>,
const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 97 { | |
| 98 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 99 TestInterfacePythonImplementationV8Internal::staticStringAttributeAttributeG
etter(info); | |
| 100 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 101 } | |
| 102 | |
| 103 static void staticStringAttributeAttributeSetter(v8::Local<v8::Value> v8Value, c
onst v8::PropertyCallbackInfo<void>& info) | |
| 104 { | |
| 105 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 106 TestInterfacePythonImplementation::setStaticStringAttribute(cppValue); | |
| 107 } | |
| 108 | |
| 109 static void staticStringAttributeAttributeSetterCallback(v8::Local<v8::String>,
v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 110 { | |
| 111 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 112 TestInterfacePythonImplementationV8Internal::staticStringAttributeAttributeS
etter(v8Value, info); | |
| 113 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 114 } | |
| 115 | |
| 116 static void perWorldBindingsStringAttributeAttributeGetter(const v8::PropertyCal
lbackInfo<v8::Value>& info) | |
| 117 { | |
| 118 v8::Handle<v8::Object> holder = info.Holder(); | |
| 119 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 120 v8SetReturnValueString(info, impl->perWorldBindingsStringAttribute(), info.G
etIsolate()); | |
| 121 } | |
| 122 | |
| 123 static void perWorldBindingsStringAttributeAttributeGetterCallback(v8::Local<v8:
:String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 124 { | |
| 125 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 126 TestInterfacePythonImplementationV8Internal::perWorldBindingsStringAttribute
AttributeGetter(info); | |
| 127 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 128 } | |
| 129 | |
| 130 static void perWorldBindingsStringAttributeAttributeSetter(v8::Local<v8::Value>
v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 131 { | |
| 132 v8::Handle<v8::Object> holder = info.Holder(); | |
| 133 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 134 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 135 impl->setPerWorldBindingsStringAttribute(cppValue); | |
| 136 } | |
| 137 | |
| 138 static void perWorldBindingsStringAttributeAttributeSetterCallback(v8::Local<v8:
:String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& in
fo) | |
| 139 { | |
| 140 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 141 TestInterfacePythonImplementationV8Internal::perWorldBindingsStringAttribute
AttributeSetter(v8Value, info); | |
| 142 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 143 } | |
| 144 | |
| 145 static void perWorldBindingsStringAttributeAttributeGetterForMainWorld(const v8:
:PropertyCallbackInfo<v8::Value>& info) | |
| 146 { | |
| 147 v8::Handle<v8::Object> holder = info.Holder(); | |
| 148 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 149 v8SetReturnValueString(info, impl->perWorldBindingsStringAttribute(), info.G
etIsolate()); | |
| 150 } | |
| 151 | |
| 152 static void perWorldBindingsStringAttributeAttributeGetterCallbackForMainWorld(v
8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 153 { | |
| 154 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 155 TestInterfacePythonImplementationV8Internal::perWorldBindingsStringAttribute
AttributeGetterForMainWorld(info); | |
| 156 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 157 } | |
| 158 | |
| 159 static void perWorldBindingsStringAttributeAttributeSetterForMainWorld(v8::Local
<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 160 { | |
| 161 v8::Handle<v8::Object> holder = info.Holder(); | |
| 162 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 163 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 164 impl->setPerWorldBindingsStringAttribute(cppValue); | |
| 165 } | |
| 166 | |
| 167 static void perWorldBindingsStringAttributeAttributeSetterCallbackForMainWorld(v
8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackIn
fo<void>& info) | |
| 168 { | |
| 169 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 170 TestInterfacePythonImplementationV8Internal::perWorldBindingsStringAttribute
AttributeSetterForMainWorld(v8Value, info); | |
| 171 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 172 } | |
| 173 | |
| 174 static void implementsStaticReadOnlyLongAttributeAttributeGetter(const v8::Prope
rtyCallbackInfo<v8::Value>& info) | |
| 175 { | |
| 176 v8SetReturnValueInt(info, TestImplements::implementsStaticReadOnlyLongAttrib
ute()); | |
| 177 } | |
| 178 | |
| 179 static void implementsStaticReadOnlyLongAttributeAttributeGetterCallback(v8::Loc
al<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 180 { | |
| 181 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 182 TestInterfacePythonImplementationV8Internal::implementsStaticReadOnlyLongAtt
ributeAttributeGetter(info); | |
| 183 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 184 } | |
| 185 | |
| 186 static void implementsStaticStringAttributeAttributeGetter(const v8::PropertyCal
lbackInfo<v8::Value>& info) | |
| 187 { | |
| 188 v8SetReturnValueString(info, TestImplements::implementsStaticStringAttribute
(), info.GetIsolate()); | |
| 189 } | |
| 190 | |
| 191 static void implementsStaticStringAttributeAttributeGetterCallback(v8::Local<v8:
:String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 192 { | |
| 193 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 194 TestInterfacePythonImplementationV8Internal::implementsStaticStringAttribute
AttributeGetter(info); | |
| 195 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 196 } | |
| 197 | |
| 198 static void implementsStaticStringAttributeAttributeSetter(v8::Local<v8::Value>
v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 199 { | |
| 200 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 201 TestImplements::setImplementsStaticStringAttribute(cppValue); | |
| 202 } | |
| 203 | |
| 204 static void implementsStaticStringAttributeAttributeSetterCallback(v8::Local<v8:
:String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& in
fo) | |
| 205 { | |
| 206 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 207 TestInterfacePythonImplementationV8Internal::implementsStaticStringAttribute
AttributeSetter(v8Value, info); | |
| 208 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 209 } | |
| 210 | |
| 211 static void implementsReadonlyStringAttributeAttributeGetter(const v8::PropertyC
allbackInfo<v8::Value>& info) | |
| 212 { | |
| 213 v8::Handle<v8::Object> holder = info.Holder(); | |
| 214 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 215 ASSERT(impl); | |
| 216 v8SetReturnValueString(info, TestImplements::implementsReadonlyStringAttribu
te(*impl), info.GetIsolate()); | |
| 217 } | |
| 218 | |
| 219 static void implementsReadonlyStringAttributeAttributeGetterCallback(v8::Local<v
8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 220 { | |
| 221 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 222 TestInterfacePythonImplementationV8Internal::implementsReadonlyStringAttribu
teAttributeGetter(info); | |
| 223 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 224 } | |
| 225 | |
| 226 static void implementsStringAttributeAttributeGetter(const v8::PropertyCallbackI
nfo<v8::Value>& info) | |
| 227 { | |
| 228 v8::Handle<v8::Object> holder = info.Holder(); | |
| 229 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 230 ASSERT(impl); | |
| 231 v8SetReturnValueString(info, TestImplements::implementsStringAttribute(*impl
), info.GetIsolate()); | |
| 232 } | |
| 233 | |
| 234 static void implementsStringAttributeAttributeGetterCallback(v8::Local<v8::Strin
g>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 235 { | |
| 236 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 237 TestInterfacePythonImplementationV8Internal::implementsStringAttributeAttrib
uteGetter(info); | |
| 238 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 239 } | |
| 240 | |
| 241 static void implementsStringAttributeAttributeSetter(v8::Local<v8::Value> v8Valu
e, const v8::PropertyCallbackInfo<void>& info) | |
| 242 { | |
| 243 v8::Handle<v8::Object> holder = info.Holder(); | |
| 244 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 245 ASSERT(impl); | |
| 246 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 247 TestImplements::setImplementsStringAttribute(*impl, cppValue); | |
| 248 } | |
| 249 | |
| 250 static void implementsStringAttributeAttributeSetterCallback(v8::Local<v8::Strin
g>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 251 { | |
| 252 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 253 TestInterfacePythonImplementationV8Internal::implementsStringAttributeAttrib
uteSetter(v8Value, info); | |
| 254 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 255 } | |
| 256 | |
| 257 static void implementsNodeAttributeAttributeGetter(const v8::PropertyCallbackInf
o<v8::Value>& info) | |
| 258 { | |
| 259 v8::Handle<v8::Object> holder = info.Holder(); | |
| 260 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 261 ASSERT(impl); | |
| 262 v8SetReturnValueFast(info, WTF::getPtr(TestImplements::implementsNodeAttribu
te(*impl)), impl); | |
| 263 } | |
| 264 | |
| 265 static void implementsNodeAttributeAttributeGetterCallback(v8::Local<v8::String>
, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 266 { | |
| 267 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 268 TestInterfacePythonImplementationV8Internal::implementsNodeAttributeAttribut
eGetter(info); | |
| 269 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 270 } | |
| 271 | |
| 272 static void implementsNodeAttributeAttributeSetter(v8::Local<v8::Value> v8Value,
const v8::PropertyCallbackInfo<void>& info) | |
| 273 { | |
| 274 v8::Handle<v8::Object> holder = info.Holder(); | |
| 275 ExceptionState exceptionState(ExceptionState::SetterContext, "implementsNode
Attribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 276 if (!isUndefinedOrNull(v8Value) && !V8Node::hasInstance(v8Value, info.GetIso
late())) { | |
| 277 exceptionState.throwTypeError("The provided value is not of type 'Node'.
"); | |
| 278 exceptionState.throwIfNeeded(); | |
| 279 return; | |
| 280 } | |
| 281 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 282 ASSERT(impl); | |
| 283 V8TRYCATCH_VOID(Node*, cppValue, V8Node::toNativeWithTypeCheck(info.GetIsola
te(), v8Value)); | |
| 284 TestImplements::setImplementsNodeAttribute(*impl, WTF::getPtr(cppValue)); | |
| 285 } | |
| 286 | |
| 287 static void implementsNodeAttributeAttributeSetterCallback(v8::Local<v8::String>
, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 288 { | |
| 289 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 290 TestInterfacePythonImplementationV8Internal::implementsNodeAttributeAttribut
eSetter(v8Value, info); | |
| 291 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 292 } | |
| 293 | |
| 294 static void implementsEventHandlerAttributeAttributeGetter(const v8::PropertyCal
lbackInfo<v8::Value>& info) | |
| 295 { | |
| 296 v8::Handle<v8::Object> holder = info.Holder(); | |
| 297 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 298 ASSERT(impl); | |
| 299 EventListener* v8Value = TestImplements::implementsEventHandlerAttribute(*im
pl); | |
| 300 v8SetReturnValue(info, v8Value ? v8::Handle<v8::Value>(V8AbstractEventListen
er::cast(v8Value)->getListenerObject(impl->executionContext())) : v8::Handle<v8:
:Value>(v8::Null(info.GetIsolate()))); | |
| 301 } | |
| 302 | |
| 303 static void implementsEventHandlerAttributeAttributeGetterCallback(v8::Local<v8:
:String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 304 { | |
| 305 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 306 TestInterfacePythonImplementationV8Internal::implementsEventHandlerAttribute
AttributeGetter(info); | |
| 307 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 308 } | |
| 309 | |
| 310 static void implementsEventHandlerAttributeAttributeSetter(v8::Local<v8::Value>
v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 311 { | |
| 312 v8::Handle<v8::Object> holder = info.Holder(); | |
| 313 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 314 ASSERT(impl); | |
| 315 moveEventListenerToNewWrapper(holder, TestImplements::implementsEventHandler
Attribute(*impl), v8Value, V8TestInterfacePython::eventListenerCacheIndex, info.
GetIsolate()); | |
| 316 TestImplements::setImplementsEventHandlerAttribute(*impl, V8EventListenerLis
t::getEventListener(v8Value, true, ListenerFindOrCreate)); | |
| 317 } | |
| 318 | |
| 319 static void implementsEventHandlerAttributeAttributeSetterCallback(v8::Local<v8:
:String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& in
fo) | |
| 320 { | |
| 321 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 322 TestInterfacePythonImplementationV8Internal::implementsEventHandlerAttribute
AttributeSetter(v8Value, info); | |
| 323 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 324 } | |
| 325 | |
| 326 static void implementsRuntimeEnabledNodeAttributeAttributeGetter(const v8::Prope
rtyCallbackInfo<v8::Value>& info) | |
| 327 { | |
| 328 v8::Handle<v8::Object> holder = info.Holder(); | |
| 329 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 330 ASSERT(impl); | |
| 331 v8SetReturnValueFast(info, WTF::getPtr(TestImplements::implementsRuntimeEnab
ledNodeAttribute(*impl)), impl); | |
| 332 } | |
| 333 | |
| 334 static void implementsRuntimeEnabledNodeAttributeAttributeGetterCallback(v8::Loc
al<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 335 { | |
| 336 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 337 TestInterfacePythonImplementationV8Internal::implementsRuntimeEnabledNodeAtt
ributeAttributeGetter(info); | |
| 338 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 339 } | |
| 340 | |
| 341 static void implementsRuntimeEnabledNodeAttributeAttributeSetter(v8::Local<v8::V
alue> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 342 { | |
| 343 v8::Handle<v8::Object> holder = info.Holder(); | |
| 344 ExceptionState exceptionState(ExceptionState::SetterContext, "implementsRunt
imeEnabledNodeAttribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 345 if (!isUndefinedOrNull(v8Value) && !V8Node::hasInstance(v8Value, info.GetIso
late())) { | |
| 346 exceptionState.throwTypeError("The provided value is not of type 'Node'.
"); | |
| 347 exceptionState.throwIfNeeded(); | |
| 348 return; | |
| 349 } | |
| 350 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 351 ASSERT(impl); | |
| 352 V8TRYCATCH_VOID(Node*, cppValue, V8Node::toNativeWithTypeCheck(info.GetIsola
te(), v8Value)); | |
| 353 TestImplements::setImplementsRuntimeEnabledNodeAttribute(*impl, WTF::getPtr(
cppValue)); | |
| 354 } | |
| 355 | |
| 356 static void implementsRuntimeEnabledNodeAttributeAttributeSetterCallback(v8::Loc
al<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<voi
d>& info) | |
| 357 { | |
| 358 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 359 TestInterfacePythonImplementationV8Internal::implementsRuntimeEnabledNodeAtt
ributeAttributeSetter(v8Value, info); | |
| 360 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 361 } | |
| 362 | |
| 363 static void implementsPerContextEnabledNodeAttributeAttributeGetter(const v8::Pr
opertyCallbackInfo<v8::Value>& info) | |
| 364 { | |
| 365 v8::Handle<v8::Object> holder = info.Holder(); | |
| 366 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 367 ASSERT(impl); | |
| 368 v8SetReturnValueFast(info, WTF::getPtr(TestImplements::implementsPerContextE
nabledNodeAttribute(*impl)), impl); | |
| 369 } | |
| 370 | |
| 371 static void implementsPerContextEnabledNodeAttributeAttributeGetterCallback(v8::
Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 372 { | |
| 373 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 374 TestInterfacePythonImplementationV8Internal::implementsPerContextEnabledNode
AttributeAttributeGetter(info); | |
| 375 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 376 } | |
| 377 | |
| 378 static void implementsPerContextEnabledNodeAttributeAttributeSetter(v8::Local<v8
::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 379 { | |
| 380 v8::Handle<v8::Object> holder = info.Holder(); | |
| 381 ExceptionState exceptionState(ExceptionState::SetterContext, "implementsPerC
ontextEnabledNodeAttribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 382 if (!isUndefinedOrNull(v8Value) && !V8Node::hasInstance(v8Value, info.GetIso
late())) { | |
| 383 exceptionState.throwTypeError("The provided value is not of type 'Node'.
"); | |
| 384 exceptionState.throwIfNeeded(); | |
| 385 return; | |
| 386 } | |
| 387 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 388 ASSERT(impl); | |
| 389 V8TRYCATCH_VOID(Node*, cppValue, V8Node::toNativeWithTypeCheck(info.GetIsola
te(), v8Value)); | |
| 390 TestImplements::setImplementsPerContextEnabledNodeAttribute(*impl, WTF::getP
tr(cppValue)); | |
| 391 } | |
| 392 | |
| 393 static void implementsPerContextEnabledNodeAttributeAttributeSetterCallback(v8::
Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<
void>& info) | |
| 394 { | |
| 395 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 396 TestInterfacePythonImplementationV8Internal::implementsPerContextEnabledNode
AttributeAttributeSetter(v8Value, info); | |
| 397 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 398 } | |
| 399 | |
| 400 static void implements2StaticStringAttributeAttributeGetter(const v8::PropertyCa
llbackInfo<v8::Value>& info) | |
| 401 { | |
| 402 v8SetReturnValueString(info, TestImplements2Implementation::implements2Stati
cStringAttribute(), info.GetIsolate()); | |
| 403 } | |
| 404 | |
| 405 static void implements2StaticStringAttributeAttributeGetterCallback(v8::Local<v8
::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 406 { | |
| 407 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 408 TestInterfacePythonImplementationV8Internal::implements2StaticStringAttribut
eAttributeGetter(info); | |
| 409 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 410 } | |
| 411 | |
| 412 static void implements2StaticStringAttributeAttributeSetter(v8::Local<v8::Value>
v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 413 { | |
| 414 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 415 TestImplements2Implementation::setImplements2StaticStringAttribute(cppValue)
; | |
| 416 } | |
| 417 | |
| 418 static void implements2StaticStringAttributeAttributeSetterCallback(v8::Local<v8
::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& i
nfo) | |
| 419 { | |
| 420 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 421 TestInterfacePythonImplementationV8Internal::implements2StaticStringAttribut
eAttributeSetter(v8Value, info); | |
| 422 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 423 } | |
| 424 | |
| 425 static void implements2StringAttributeAttributeGetter(const v8::PropertyCallback
Info<v8::Value>& info) | |
| 426 { | |
| 427 v8::Handle<v8::Object> holder = info.Holder(); | |
| 428 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 429 ASSERT(impl); | |
| 430 v8SetReturnValueString(info, TestImplements2Implementation::implements2Strin
gAttribute(*impl), info.GetIsolate()); | |
| 431 } | |
| 432 | |
| 433 static void implements2StringAttributeAttributeGetterCallback(v8::Local<v8::Stri
ng>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 434 { | |
| 435 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 436 TestInterfacePythonImplementationV8Internal::implements2StringAttributeAttri
buteGetter(info); | |
| 437 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 438 } | |
| 439 | |
| 440 static void implements2StringAttributeAttributeSetter(v8::Local<v8::Value> v8Val
ue, const v8::PropertyCallbackInfo<void>& info) | |
| 441 { | |
| 442 v8::Handle<v8::Object> holder = info.Holder(); | |
| 443 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 444 ASSERT(impl); | |
| 445 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 446 TestImplements2Implementation::setImplements2StringAttribute(*impl, cppValue
); | |
| 447 } | |
| 448 | |
| 449 static void implements2StringAttributeAttributeSetterCallback(v8::Local<v8::Stri
ng>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 450 { | |
| 451 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 452 TestInterfacePythonImplementationV8Internal::implements2StringAttributeAttri
buteSetter(v8Value, info); | |
| 453 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 454 } | |
| 455 | |
| 456 static void implements3StringAttributeAttributeGetter(const v8::PropertyCallback
Info<v8::Value>& info) | |
| 457 { | |
| 458 v8::Handle<v8::Object> holder = info.Holder(); | |
| 459 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 460 v8SetReturnValueString(info, impl->implements3StringAttribute(), info.GetIso
late()); | |
| 461 } | |
| 462 | |
| 463 static void implements3StringAttributeAttributeGetterCallback(v8::Local<v8::Stri
ng>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 464 { | |
| 465 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 466 TestInterfacePythonImplementationV8Internal::implements3StringAttributeAttri
buteGetter(info); | |
| 467 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 468 } | |
| 469 | |
| 470 static void implements3StringAttributeAttributeSetter(v8::Local<v8::Value> v8Val
ue, const v8::PropertyCallbackInfo<void>& info) | |
| 471 { | |
| 472 v8::Handle<v8::Object> holder = info.Holder(); | |
| 473 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 474 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 475 impl->setImplements3StringAttribute(cppValue); | |
| 476 } | |
| 477 | |
| 478 static void implements3StringAttributeAttributeSetterCallback(v8::Local<v8::Stri
ng>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 479 { | |
| 480 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 481 TestInterfacePythonImplementationV8Internal::implements3StringAttributeAttri
buteSetter(v8Value, info); | |
| 482 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 483 } | |
| 484 | |
| 485 static void implements3StaticStringAttributeAttributeGetter(const v8::PropertyCa
llbackInfo<v8::Value>& info) | |
| 486 { | |
| 487 v8SetReturnValueString(info, TestInterfacePythonImplementation::implements3S
taticStringAttribute(), info.GetIsolate()); | |
| 488 } | |
| 489 | |
| 490 static void implements3StaticStringAttributeAttributeGetterCallback(v8::Local<v8
::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 491 { | |
| 492 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 493 TestInterfacePythonImplementationV8Internal::implements3StaticStringAttribut
eAttributeGetter(info); | |
| 494 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 495 } | |
| 496 | |
| 497 static void implements3StaticStringAttributeAttributeSetter(v8::Local<v8::Value>
v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 498 { | |
| 499 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 500 TestInterfacePythonImplementation::setImplements3StaticStringAttribute(cppVa
lue); | |
| 501 } | |
| 502 | |
| 503 static void implements3StaticStringAttributeAttributeSetterCallback(v8::Local<v8
::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& i
nfo) | |
| 504 { | |
| 505 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 506 TestInterfacePythonImplementationV8Internal::implements3StaticStringAttribut
eAttributeSetter(v8Value, info); | |
| 507 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 508 } | |
| 509 | |
| 510 #if ENABLE(PARTIAL_CONDITION) | |
| 511 static void partialLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v
8::Value>& info) | |
| 512 { | |
| 513 v8::Handle<v8::Object> holder = info.Holder(); | |
| 514 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 515 ASSERT(impl); | |
| 516 v8SetReturnValueInt(info, TestPartialInterfacePython::partialLongAttribute(*
impl)); | |
| 517 } | |
| 518 #endif // ENABLE(PARTIAL_CONDITION) | |
| 519 | |
| 520 #if ENABLE(PARTIAL_CONDITION) | |
| 521 static void partialLongAttributeAttributeGetterCallback(v8::Local<v8::String>, c
onst v8::PropertyCallbackInfo<v8::Value>& info) | |
| 522 { | |
| 523 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 524 TestInterfacePythonImplementationV8Internal::partialLongAttributeAttributeGe
tter(info); | |
| 525 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 526 } | |
| 527 #endif // ENABLE(PARTIAL_CONDITION) | |
| 528 | |
| 529 #if ENABLE(PARTIAL_CONDITION) | |
| 530 static void partialLongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, co
nst v8::PropertyCallbackInfo<void>& info) | |
| 531 { | |
| 532 v8::Handle<v8::Object> holder = info.Holder(); | |
| 533 ExceptionState exceptionState(ExceptionState::SetterContext, "partialLongAtt
ribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 534 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 535 ASSERT(impl); | |
| 536 V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), e
xceptionState); | |
| 537 TestPartialInterfacePython::setPartialLongAttribute(*impl, cppValue); | |
| 538 } | |
| 539 #endif // ENABLE(PARTIAL_CONDITION) | |
| 540 | |
| 541 #if ENABLE(PARTIAL_CONDITION) | |
| 542 static void partialLongAttributeAttributeSetterCallback(v8::Local<v8::String>, v
8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 543 { | |
| 544 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 545 TestInterfacePythonImplementationV8Internal::partialLongAttributeAttributeSe
tter(v8Value, info); | |
| 546 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 547 } | |
| 548 #endif // ENABLE(PARTIAL_CONDITION) | |
| 549 | |
| 550 #if ENABLE(PARTIAL_CONDITION) | |
| 551 static void partialStaticLongAttributeAttributeGetter(const v8::PropertyCallback
Info<v8::Value>& info) | |
| 552 { | |
| 553 v8SetReturnValueInt(info, TestPartialInterfacePython::partialStaticLongAttri
bute()); | |
| 554 } | |
| 555 #endif // ENABLE(PARTIAL_CONDITION) | |
| 556 | |
| 557 #if ENABLE(PARTIAL_CONDITION) | |
| 558 static void partialStaticLongAttributeAttributeGetterCallback(v8::Local<v8::Stri
ng>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 559 { | |
| 560 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 561 TestInterfacePythonImplementationV8Internal::partialStaticLongAttributeAttri
buteGetter(info); | |
| 562 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 563 } | |
| 564 #endif // ENABLE(PARTIAL_CONDITION) | |
| 565 | |
| 566 #if ENABLE(PARTIAL_CONDITION) | |
| 567 static void partialStaticLongAttributeAttributeSetter(v8::Local<v8::Value> v8Val
ue, const v8::PropertyCallbackInfo<void>& info) | |
| 568 { | |
| 569 ExceptionState exceptionState(ExceptionState::SetterContext, "partialStaticL
ongAttribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 570 V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), e
xceptionState); | |
| 571 TestPartialInterfacePython::setPartialStaticLongAttribute(cppValue); | |
| 572 } | |
| 573 #endif // ENABLE(PARTIAL_CONDITION) | |
| 574 | |
| 575 #if ENABLE(PARTIAL_CONDITION) | |
| 576 static void partialStaticLongAttributeAttributeSetterCallback(v8::Local<v8::Stri
ng>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 577 { | |
| 578 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 579 TestInterfacePythonImplementationV8Internal::partialStaticLongAttributeAttri
buteSetter(v8Value, info); | |
| 580 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 581 } | |
| 582 #endif // ENABLE(PARTIAL_CONDITION) | |
| 583 | |
| 584 #if ENABLE(PARTIAL_CONDITION) | |
| 585 static void partialCallWithExecutionContextLongAttributeAttributeGetter(const v8
::PropertyCallbackInfo<v8::Value>& info) | |
| 586 { | |
| 587 v8::Handle<v8::Object> holder = info.Holder(); | |
| 588 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 589 ASSERT(impl); | |
| 590 ExecutionContext* scriptContext = currentExecutionContext(info.GetIsolate())
; | |
| 591 v8SetReturnValueInt(info, TestPartialInterfacePython::partialCallWithExecuti
onContextLongAttribute(scriptContext, *impl)); | |
| 592 } | |
| 593 #endif // ENABLE(PARTIAL_CONDITION) | |
| 594 | |
| 595 #if ENABLE(PARTIAL_CONDITION) | |
| 596 static void partialCallWithExecutionContextLongAttributeAttributeGetterCallback(
v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 597 { | |
| 598 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 599 TestInterfacePythonImplementationV8Internal::partialCallWithExecutionContext
LongAttributeAttributeGetter(info); | |
| 600 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 601 } | |
| 602 #endif // ENABLE(PARTIAL_CONDITION) | |
| 603 | |
| 604 #if ENABLE(PARTIAL_CONDITION) | |
| 605 static void partialCallWithExecutionContextLongAttributeAttributeSetter(v8::Loca
l<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 606 { | |
| 607 v8::Handle<v8::Object> holder = info.Holder(); | |
| 608 ExceptionState exceptionState(ExceptionState::SetterContext, "partialCallWit
hExecutionContextLongAttribute", "TestInterfacePython", holder, info.GetIsolate(
)); | |
| 609 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 610 ASSERT(impl); | |
| 611 V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), e
xceptionState); | |
| 612 ExecutionContext* scriptContext = currentExecutionContext(info.GetIsolate())
; | |
| 613 TestPartialInterfacePython::setPartialCallWithExecutionContextLongAttribute(
scriptContext, *impl, cppValue); | |
| 614 } | |
| 615 #endif // ENABLE(PARTIAL_CONDITION) | |
| 616 | |
| 617 #if ENABLE(PARTIAL_CONDITION) | |
| 618 static void partialCallWithExecutionContextLongAttributeAttributeSetterCallback(
v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackI
nfo<void>& info) | |
| 619 { | |
| 620 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 621 TestInterfacePythonImplementationV8Internal::partialCallWithExecutionContext
LongAttributeAttributeSetter(v8Value, info); | |
| 622 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 623 } | |
| 624 #endif // ENABLE(PARTIAL_CONDITION) | |
| 625 | |
| 626 #if ENABLE(PARTIAL_CONDITION) | |
| 627 static void enumAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Valu
e>& info) | |
| 628 { | |
| 629 v8::Handle<v8::Object> holder = info.Holder(); | |
| 630 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 631 ASSERT(impl); | |
| 632 v8SetReturnValueString(info, TestPartialInterfacePython::enumAttribute(*impl
), info.GetIsolate()); | |
| 633 } | |
| 634 #endif // ENABLE(PARTIAL_CONDITION) | |
| 635 | |
| 636 #if ENABLE(PARTIAL_CONDITION) | |
| 637 static void enumAttributeAttributeGetterCallback(v8::Local<v8::String>, const v8
::PropertyCallbackInfo<v8::Value>& info) | |
| 638 { | |
| 639 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 640 TestInterfacePythonImplementationV8Internal::enumAttributeAttributeGetter(in
fo); | |
| 641 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 642 } | |
| 643 #endif // ENABLE(PARTIAL_CONDITION) | |
| 644 | |
| 645 #if ENABLE(PARTIAL_CONDITION) | |
| 646 static void enumAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v8:
:PropertyCallbackInfo<void>& info) | |
| 647 { | |
| 648 v8::Handle<v8::Object> holder = info.Holder(); | |
| 649 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 650 ASSERT(impl); | |
| 651 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, v8Value); | |
| 652 String string = cppValue; | |
| 653 if (!(string == "foo" || string == "bar")) | |
| 654 return; | |
| 655 TestPartialInterfacePython::setEnumAttribute(*impl, cppValue); | |
| 656 } | |
| 657 #endif // ENABLE(PARTIAL_CONDITION) | |
| 658 | |
| 659 #if ENABLE(PARTIAL_CONDITION) | |
| 660 static void enumAttributeAttributeSetterCallback(v8::Local<v8::String>, v8::Loca
l<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 661 { | |
| 662 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 663 TestInterfacePythonImplementationV8Internal::enumAttributeAttributeSetter(v8
Value, info); | |
| 664 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 665 } | |
| 666 #endif // ENABLE(PARTIAL_CONDITION) | |
| 667 | |
| 668 static void partial2LongAttributeAttributeGetter(const v8::PropertyCallbackInfo<
v8::Value>& info) | |
| 669 { | |
| 670 v8::Handle<v8::Object> holder = info.Holder(); | |
| 671 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 672 ASSERT(impl); | |
| 673 v8SetReturnValueInt(info, TestPartialInterfacePythonImplementation::partial2
LongAttribute(*impl)); | |
| 674 } | |
| 675 | |
| 676 static void partial2LongAttributeAttributeGetterCallback(v8::Local<v8::String>,
const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 677 { | |
| 678 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 679 TestInterfacePythonImplementationV8Internal::partial2LongAttributeAttributeG
etter(info); | |
| 680 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 681 } | |
| 682 | |
| 683 static void partial2LongAttributeAttributeSetter(v8::Local<v8::Value> v8Value, c
onst v8::PropertyCallbackInfo<void>& info) | |
| 684 { | |
| 685 v8::Handle<v8::Object> holder = info.Holder(); | |
| 686 ExceptionState exceptionState(ExceptionState::SetterContext, "partial2LongAt
tribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 687 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(ho
lder); | |
| 688 ASSERT(impl); | |
| 689 V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), e
xceptionState); | |
| 690 TestPartialInterfacePythonImplementation::setPartial2LongAttribute(*impl, cp
pValue); | |
| 691 } | |
| 692 | |
| 693 static void partial2LongAttributeAttributeSetterCallback(v8::Local<v8::String>,
v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 694 { | |
| 695 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 696 TestInterfacePythonImplementationV8Internal::partial2LongAttributeAttributeS
etter(v8Value, info); | |
| 697 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 698 } | |
| 699 | |
| 700 static void partial2StaticLongAttributeAttributeGetter(const v8::PropertyCallbac
kInfo<v8::Value>& info) | |
| 701 { | |
| 702 v8SetReturnValueInt(info, TestPartialInterfacePythonImplementation::partial2
StaticLongAttribute()); | |
| 703 } | |
| 704 | |
| 705 static void partial2StaticLongAttributeAttributeGetterCallback(v8::Local<v8::Str
ing>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 706 { | |
| 707 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMGetter"); | |
| 708 TestInterfacePythonImplementationV8Internal::partial2StaticLongAttributeAttr
ibuteGetter(info); | |
| 709 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 710 } | |
| 711 | |
| 712 static void partial2StaticLongAttributeAttributeSetter(v8::Local<v8::Value> v8Va
lue, const v8::PropertyCallbackInfo<void>& info) | |
| 713 { | |
| 714 ExceptionState exceptionState(ExceptionState::SetterContext, "partial2Static
LongAttribute", "TestInterfacePython", holder, info.GetIsolate()); | |
| 715 V8TRYCATCH_EXCEPTION_VOID(int, cppValue, toInt32(v8Value, exceptionState), e
xceptionState); | |
| 716 TestPartialInterfacePythonImplementation::setPartial2StaticLongAttribute(cpp
Value); | |
| 717 } | |
| 718 | |
| 719 static void partial2StaticLongAttributeAttributeSetterCallback(v8::Local<v8::Str
ing>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) | |
| 720 { | |
| 721 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMSetter"); | |
| 722 TestInterfacePythonImplementationV8Internal::partial2StaticLongAttributeAttr
ibuteSetter(v8Value, info); | |
| 723 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 724 } | |
| 725 | |
| 726 static void TestInterfacePythonImplementationConstructorGetter(v8::Local<v8::Str
ing>, const v8::PropertyCallbackInfo<v8::Value>& info) | |
| 727 { | |
| 728 v8::Handle<v8::Value> data = info.Data(); | |
| 729 ASSERT(data->IsExternal()); | |
| 730 V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->Cre
ationContext()); | |
| 731 if (!perContextData) | |
| 732 return; | |
| 733 v8SetReturnValue(info, perContextData->constructorForType(WrapperTypeInfo::u
nwrap(data))); | |
| 734 } | |
| 735 | |
| 736 static void TestInterfacePythonImplementationReplaceableAttributeSetter(v8::Loca
l<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo
<void>& info) | |
| 737 { | |
| 738 info.This()->ForceSet(name, v8Value); | |
| 739 } | |
| 740 | |
| 741 static void TestInterfacePythonImplementationReplaceableAttributeSetterCallback(
v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCall
backInfo<void>& info) | |
| 742 { | |
| 743 TestInterfacePythonImplementationV8Internal::TestInterfacePythonImplementati
onReplaceableAttributeSetter(name, v8Value, info); | |
| 744 } | |
| 745 | |
| 746 static void voidMethodTestInterfaceEmptyArgMethod(const v8::FunctionCallbackInfo
<v8::Value>& info) | |
| 747 { | |
| 748 if (UNLIKELY(info.Length() < 1)) { | |
| 749 throwTypeError(ExceptionMessages::failedToExecute("voidMethodTestInterfa
ceEmptyArg", "TestInterfacePython", ExceptionMessages::notEnoughArguments(1, inf
o.Length())), info.GetIsolate()); | |
| 750 return; | |
| 751 } | |
| 752 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 753 if (info.Length() > 0 && !V8TestInterfaceEmpty::hasInstance(info[0], info.Ge
tIsolate())) { | |
| 754 throwTypeError(ExceptionMessages::failedToExecute("voidMethodTestInterfa
ceEmptyArg", "TestInterfacePython", "parameter 1 is not of type 'TestInterfaceEm
pty'."), info.GetIsolate()); | |
| 755 return; | |
| 756 } | |
| 757 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceE
mpty::toNativeWithTypeCheck(info.GetIsolate(), info[0])); | |
| 758 impl->voidMethodTestInterfaceEmptyArg(testInterfaceEmptyArg); | |
| 759 } | |
| 760 | |
| 761 static void voidMethodTestInterfaceEmptyArgMethodCallback(const v8::FunctionCall
backInfo<v8::Value>& info) | |
| 762 { | |
| 763 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 764 TestInterfacePythonImplementationV8Internal::voidMethodTestInterfaceEmptyArg
Method(info); | |
| 765 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 766 } | |
| 767 | |
| 768 static void voidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info) | |
| 769 { | |
| 770 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 771 impl->voidMethod(); | |
| 772 } | |
| 773 | |
| 774 static void voidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::Value>&
info) | |
| 775 { | |
| 776 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 777 TestInterfacePythonImplementationV8Internal::voidMethodMethod(info); | |
| 778 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 779 } | |
| 780 | |
| 781 static void voidMethodMethodForMainWorld(const v8::FunctionCallbackInfo<v8::Valu
e>& info) | |
| 782 { | |
| 783 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 784 impl->voidMethod(); | |
| 785 } | |
| 786 | |
| 787 static void voidMethodMethodCallbackForMainWorld(const v8::FunctionCallbackInfo<
v8::Value>& info) | |
| 788 { | |
| 789 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 790 TestInterfacePythonImplementationV8Internal::voidMethodMethodForMainWorld(in
fo); | |
| 791 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 792 } | |
| 793 | |
| 794 static void implementsVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>
& info) | |
| 795 { | |
| 796 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 797 ASSERT(impl); | |
| 798 TestImplements::implementsVoidMethod(*impl); | |
| 799 } | |
| 800 | |
| 801 static void implementsVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8
::Value>& info) | |
| 802 { | |
| 803 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 804 TestInterfacePythonImplementationV8Internal::implementsVoidMethodMethod(info
); | |
| 805 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 806 } | |
| 807 | |
| 808 static void implementsComplexMethodMethod(const v8::FunctionCallbackInfo<v8::Val
ue>& info) | |
| 809 { | |
| 810 ExceptionState exceptionState(ExceptionState::ExecutionContext, "implementsC
omplexMethod", "TestInterfacePython", info.Holder(), info.GetIsolate()); | |
| 811 if (UNLIKELY(info.Length() < 2)) { | |
| 812 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(2, i
nfo.Length())); | |
| 813 exceptionState.throwIfNeeded(); | |
| 814 return; | |
| 815 } | |
| 816 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 817 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, strArg, info[0]); | |
| 818 if (info.Length() > 1 && !V8TestInterfaceEmpty::hasInstance(info[1], info.Ge
tIsolate())) { | |
| 819 exceptionState.throwTypeError("parameter 2 is not of type 'TestInterface
Empty'."); | |
| 820 exceptionState.throwIfNeeded(); | |
| 821 return; | |
| 822 } | |
| 823 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceE
mpty::toNativeWithTypeCheck(info.GetIsolate(), info[1])); | |
| 824 ASSERT(impl); | |
| 825 ExecutionContext* scriptContext = currentExecutionContext(info.GetIsolate())
; | |
| 826 RefPtr<TestInterfaceEmpty> result = TestImplements::implementsComplexMethod(
scriptContext, *impl, strArg, testInterfaceEmptyArg, exceptionState); | |
| 827 if (exceptionState.throwIfNeeded()) | |
| 828 return; | |
| 829 v8SetReturnValue(info, result.release()); | |
| 830 } | |
| 831 | |
| 832 static void implementsComplexMethodMethodCallback(const v8::FunctionCallbackInfo
<v8::Value>& info) | |
| 833 { | |
| 834 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 835 TestInterfacePythonImplementationV8Internal::implementsComplexMethodMethod(i
nfo); | |
| 836 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 837 } | |
| 838 | |
| 839 static void implementsCustomVoidMethodMethodCallback(const v8::FunctionCallbackI
nfo<v8::Value>& info) | |
| 840 { | |
| 841 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 842 V8TestInterfacePython::implementsCustomVoidMethodMethodCustom(info); | |
| 843 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 844 } | |
| 845 | |
| 846 static void implementsStaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::
Value>& info) | |
| 847 { | |
| 848 TestImplements::implementsStaticVoidMethod(); | |
| 849 } | |
| 850 | |
| 851 static void implementsStaticVoidMethodMethodCallback(const v8::FunctionCallbackI
nfo<v8::Value>& info) | |
| 852 { | |
| 853 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 854 TestInterfacePythonImplementationV8Internal::implementsStaticVoidMethodMetho
d(info); | |
| 855 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 856 } | |
| 857 | |
| 858 static void implements2VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value
>& info) | |
| 859 { | |
| 860 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 861 ASSERT(impl); | |
| 862 TestImplements2Implementation::implements2VoidMethod(*impl); | |
| 863 } | |
| 864 | |
| 865 static void implements2VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v
8::Value>& info) | |
| 866 { | |
| 867 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 868 TestInterfacePythonImplementationV8Internal::implements2VoidMethodMethod(inf
o); | |
| 869 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 870 } | |
| 871 | |
| 872 static void implements3VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value
>& info) | |
| 873 { | |
| 874 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 875 impl->implements3VoidMethod(); | |
| 876 } | |
| 877 | |
| 878 static void implements3VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v
8::Value>& info) | |
| 879 { | |
| 880 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 881 TestInterfacePythonImplementationV8Internal::implements3VoidMethodMethod(inf
o); | |
| 882 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 883 } | |
| 884 | |
| 885 static void implements3StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8:
:Value>& info) | |
| 886 { | |
| 887 TestInterfacePythonImplementation::implements3StaticVoidMethod(); | |
| 888 } | |
| 889 | |
| 890 static void implements3StaticVoidMethodMethodCallback(const v8::FunctionCallback
Info<v8::Value>& info) | |
| 891 { | |
| 892 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 893 TestInterfacePythonImplementationV8Internal::implements3StaticVoidMethodMeth
od(info); | |
| 894 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 895 } | |
| 896 | |
| 897 #if ENABLE(PARTIAL_CONDITION) | |
| 898 static void partialVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& i
nfo) | |
| 899 { | |
| 900 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 901 ASSERT(impl); | |
| 902 TestPartialInterfacePython::partialVoidMethod(*impl); | |
| 903 } | |
| 904 #endif // ENABLE(PARTIAL_CONDITION) | |
| 905 | |
| 906 #if ENABLE(PARTIAL_CONDITION) | |
| 907 static void partialVoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::V
alue>& info) | |
| 908 { | |
| 909 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 910 TestInterfacePythonImplementationV8Internal::partialVoidMethodMethod(info); | |
| 911 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 912 } | |
| 913 #endif // ENABLE(PARTIAL_CONDITION) | |
| 914 | |
| 915 #if ENABLE(PARTIAL_CONDITION) | |
| 916 static void partialStaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Val
ue>& info) | |
| 917 { | |
| 918 TestPartialInterfacePython::partialStaticVoidMethod(); | |
| 919 } | |
| 920 #endif // ENABLE(PARTIAL_CONDITION) | |
| 921 | |
| 922 #if ENABLE(PARTIAL_CONDITION) | |
| 923 static void partialStaticVoidMethodMethodCallback(const v8::FunctionCallbackInfo
<v8::Value>& info) | |
| 924 { | |
| 925 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 926 TestInterfacePythonImplementationV8Internal::partialStaticVoidMethodMethod(i
nfo); | |
| 927 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 928 } | |
| 929 #endif // ENABLE(PARTIAL_CONDITION) | |
| 930 | |
| 931 #if ENABLE(PARTIAL_CONDITION) | |
| 932 static void partialVoidMethodLongArgMethod(const v8::FunctionCallbackInfo<v8::Va
lue>& info) | |
| 933 { | |
| 934 ExceptionState exceptionState(ExceptionState::ExecutionContext, "partialVoid
MethodLongArg", "TestInterfacePython", info.Holder(), info.GetIsolate()); | |
| 935 if (UNLIKELY(info.Length() < 1)) { | |
| 936 exceptionState.throwTypeError(ExceptionMessages::notEnoughArguments(1, i
nfo.Length())); | |
| 937 exceptionState.throwIfNeeded(); | |
| 938 return; | |
| 939 } | |
| 940 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 941 V8TRYCATCH_EXCEPTION_VOID(int, longArg, toInt32(info[0], exceptionState), ex
ceptionState); | |
| 942 ASSERT(impl); | |
| 943 TestPartialInterfacePython::partialVoidMethodLongArg(*impl, longArg); | |
| 944 } | |
| 945 #endif // ENABLE(PARTIAL_CONDITION) | |
| 946 | |
| 947 #if ENABLE(PARTIAL_CONDITION) | |
| 948 static void partialVoidMethodLongArgMethodCallback(const v8::FunctionCallbackInf
o<v8::Value>& info) | |
| 949 { | |
| 950 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 951 TestInterfacePythonImplementationV8Internal::partialVoidMethodLongArgMethod(
info); | |
| 952 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 953 } | |
| 954 #endif // ENABLE(PARTIAL_CONDITION) | |
| 955 | |
| 956 #if ENABLE(PARTIAL_CONDITION) | |
| 957 static void partialCallWithExecutionContextRaisesExceptionVoidMethodMethod(const
v8::FunctionCallbackInfo<v8::Value>& info) | |
| 958 { | |
| 959 ExceptionState exceptionState(ExceptionState::ExecutionContext, "partialCall
WithExecutionContextRaisesExceptionVoidMethod", "TestInterfacePython", info.Hold
er(), info.GetIsolate()); | |
| 960 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 961 ASSERT(impl); | |
| 962 ExecutionContext* scriptContext = currentExecutionContext(info.GetIsolate())
; | |
| 963 TestPartialInterfacePython::partialCallWithExecutionContextRaisesExceptionVo
idMethod(scriptContext, *impl, exceptionState); | |
| 964 if (exceptionState.throwIfNeeded()) | |
| 965 return; | |
| 966 } | |
| 967 #endif // ENABLE(PARTIAL_CONDITION) | |
| 968 | |
| 969 #if ENABLE(PARTIAL_CONDITION) | |
| 970 static void partialCallWithExecutionContextRaisesExceptionVoidMethodMethodCallba
ck(const v8::FunctionCallbackInfo<v8::Value>& info) | |
| 971 { | |
| 972 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 973 TestInterfacePythonImplementationV8Internal::partialCallWithExecutionContext
RaisesExceptionVoidMethodMethod(info); | |
| 974 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 975 } | |
| 976 #endif // ENABLE(PARTIAL_CONDITION) | |
| 977 | |
| 978 #if ENABLE(PARTIAL_CONDITION) | |
| 979 static void methodThatTakesCallbackMethod(const v8::FunctionCallbackInfo<v8::Val
ue>& info) | |
| 980 { | |
| 981 if (UNLIKELY(info.Length() < 1)) { | |
| 982 throwTypeError(ExceptionMessages::failedToExecute("methodThatTakesCallba
ck", "TestInterfacePython", ExceptionMessages::notEnoughArguments(1, info.Length
())), info.GetIsolate()); | |
| 983 return; | |
| 984 } | |
| 985 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 986 V8TRYCATCH_VOID(ScriptValue, callback, ScriptValue(info[0], info.GetIsolate(
))); | |
| 987 ASSERT(impl); | |
| 988 TestPartialInterfacePython::methodThatTakesCallback(*impl, callback); | |
| 989 } | |
| 990 #endif // ENABLE(PARTIAL_CONDITION) | |
| 991 | |
| 992 #if ENABLE(PARTIAL_CONDITION) | |
| 993 static void methodThatTakesCallbackMethodCallback(const v8::FunctionCallbackInfo
<v8::Value>& info) | |
| 994 { | |
| 995 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 996 TestInterfacePythonImplementationV8Internal::methodThatTakesCallbackMethod(i
nfo); | |
| 997 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 998 } | |
| 999 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1000 | |
| 1001 static void partial2VoidMethodMethod(const v8::FunctionCallbackInfo<v8::Value>&
info) | |
| 1002 { | |
| 1003 TestInterfacePythonImplementation* impl = V8TestInterfacePython::toNative(in
fo.Holder()); | |
| 1004 ASSERT(impl); | |
| 1005 TestPartialInterfacePythonImplementation::partial2VoidMethod(*impl); | |
| 1006 } | |
| 1007 | |
| 1008 static void partial2VoidMethodMethodCallback(const v8::FunctionCallbackInfo<v8::
Value>& info) | |
| 1009 { | |
| 1010 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 1011 TestInterfacePythonImplementationV8Internal::partial2VoidMethodMethod(info); | |
| 1012 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 1013 } | |
| 1014 | |
| 1015 static void partial2StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Va
lue>& info) | |
| 1016 { | |
| 1017 TestPartialInterfacePythonImplementation::partial2StaticVoidMethod(); | |
| 1018 } | |
| 1019 | |
| 1020 static void partial2StaticVoidMethodMethodCallback(const v8::FunctionCallbackInf
o<v8::Value>& info) | |
| 1021 { | |
| 1022 TRACE_EVENT_SET_SAMPLING_STATE("Blink", "DOMMethod"); | |
| 1023 TestInterfacePythonImplementationV8Internal::partial2StaticVoidMethodMethod(
info); | |
| 1024 TRACE_EVENT_SET_SAMPLING_STATE("V8", "V8Execution"); | |
| 1025 } | |
| 1026 | |
| 1027 } // namespace TestInterfacePythonImplementationV8Internal | |
| 1028 | |
| 1029 void V8TestInterfacePython::visitDOMWrapper(void* object, const v8::Persistent<v
8::Object>& wrapper, v8::Isolate* isolate) | |
| 1030 { | |
| 1031 TestInterfacePythonImplementation* impl = fromInternalPointer(object); | |
| 1032 v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate,
wrapper); | |
| 1033 V8WrapperInstantiationScope scope(creationContext, isolate); | |
| 1034 TestInterfacePythonImplementation* referencedName = impl->referencedName(); | |
| 1035 if (referencedName) { | |
| 1036 if (!DOMDataStore::containsWrapper<V8TestInterfacePython>(referencedName
, isolate)) | |
| 1037 wrap(referencedName, creationContext, isolate); | |
| 1038 DOMDataStore::setWrapperReference<V8TestInterfacePython>(wrapper, refere
ncedName, isolate); | |
| 1039 } | |
| 1040 setObjectGroup(object, wrapper, isolate); | |
| 1041 } | |
| 1042 | |
| 1043 static const V8DOMConfiguration::AttributeConfiguration V8TestInterfacePythonAtt
ributes[] = { | |
| 1044 {"testInterfacePythonAttribute", TestInterfacePythonImplementationV8Internal
::testInterfacePythonAttributeAttributeGetterCallback, TestInterfacePythonImplem
entationV8Internal::testInterfacePythonAttributeAttributeSetterCallback, 0, 0, 0
, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute
>(v8::None), 0 /* on instance */}, | |
| 1045 {"testImplementedAsConstructorAttribute", TestInterfacePythonImplementationV
8Internal::TestInterfacePythonImplementationConstructorGetter, TestInterfacePyth
onImplementationV8Internal::TestInterfacePythonImplementationReplaceableAttribut
eSetterCallback, 0, 0, const_cast<WrapperTypeInfo*>(&V8TestImplementedAs::wrappe
rTypeInfo), static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::Propert
yAttribute>(v8::DontEnum), 0 /* on instance */}, | |
| 1046 {"perWorldBindingsStringAttribute", TestInterfacePythonImplementationV8Inter
nal::perWorldBindingsStringAttributeAttributeGetterCallback, TestInterfacePython
ImplementationV8Internal::perWorldBindingsStringAttributeAttributeSetterCallback
, TestInterfacePythonImplementationV8Internal::perWorldBindingsStringAttributeAt
tributeGetterCallbackForMainWorld, TestInterfacePythonImplementationV8Internal::
perWorldBindingsStringAttributeAttributeSetterCallbackForMainWorld, 0, static_ca
st<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None)
, 0 /* on instance */}, | |
| 1047 {"implementsReadonlyStringAttribute", TestInterfacePythonImplementationV8Int
ernal::implementsReadonlyStringAttributeAttributeGetterCallback, 0, 0, 0, 0, sta
tic_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8:
:None), 0 /* on instance */}, | |
| 1048 {"implementsStringAttribute", TestInterfacePythonImplementationV8Internal::i
mplementsStringAttributeAttributeGetterCallback, TestInterfacePythonImplementati
onV8Internal::implementsStringAttributeAttributeSetterCallback, 0, 0, 0, static_
cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::Non
e), 0 /* on instance */}, | |
| 1049 {"implementsNodeAttribute", TestInterfacePythonImplementationV8Internal::imp
lementsNodeAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8
Internal::implementsNodeAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v
8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0
/* on instance */}, | |
| 1050 {"implementsEventHandlerAttribute", TestInterfacePythonImplementationV8Inter
nal::implementsEventHandlerAttributeAttributeGetterCallback, TestInterfacePython
ImplementationV8Internal::implementsEventHandlerAttributeAttributeSetterCallback
, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::Property
Attribute>(v8::None), 0 /* on instance */}, | |
| 1051 {"implements3StringAttribute", TestInterfacePythonImplementationV8Internal::
implements3StringAttributeAttributeGetterCallback, TestInterfacePythonImplementa
tionV8Internal::implements3StringAttributeAttributeSetterCallback, 0, 0, 0, stat
ic_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::
None), 0 /* on instance */}, | |
| 1052 {"partial2LongAttribute", TestInterfacePythonImplementationV8Internal::parti
al2LongAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8Inte
rnal::partial2LongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::Acc
essControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on
instance */}, | |
| 1053 }; | |
| 1054 | |
| 1055 static const V8DOMConfiguration::MethodConfiguration V8TestInterfacePythonMethod
s[] = { | |
| 1056 {"voidMethodTestInterfaceEmptyArg", TestInterfacePythonImplementationV8Inter
nal::voidMethodTestInterfaceEmptyArgMethodCallback, 0, 1}, | |
| 1057 {"voidMethod", TestInterfacePythonImplementationV8Internal::voidMethodMethod
Callback, TestInterfacePythonImplementationV8Internal::voidMethodMethodCallbackF
orMainWorld, 0}, | |
| 1058 {"implementsVoidMethod", TestInterfacePythonImplementationV8Internal::implem
entsVoidMethodMethodCallback, 0, 0}, | |
| 1059 {"implementsComplexMethod", TestInterfacePythonImplementationV8Internal::imp
lementsComplexMethodMethodCallback, 0, 2}, | |
| 1060 {"implementsCustomVoidMethod", TestInterfacePythonImplementationV8Internal::
implementsCustomVoidMethodMethodCallback, 0, 0}, | |
| 1061 {"implements3VoidMethod", TestInterfacePythonImplementationV8Internal::imple
ments3VoidMethodMethodCallback, 0, 0}, | |
| 1062 {"partial2VoidMethod", TestInterfacePythonImplementationV8Internal::partial2
VoidMethodMethodCallback, 0, 0}, | |
| 1063 }; | |
| 1064 | |
| 1065 static void configureV8TestInterfacePythonTemplate(v8::Handle<v8::FunctionTempla
te> functionTemplate, v8::Isolate* isolate) | |
| 1066 { | |
| 1067 functionTemplate->ReadOnlyPrototype(); | |
| 1068 | |
| 1069 v8::Local<v8::Signature> defaultSignature; | |
| 1070 if (!RuntimeEnabledFeatures::featureNameEnabled()) | |
| 1071 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionT
emplate, "", V8TestInterfaceEmpty::domTemplate(isolate), V8TestInterfacePython::
internalFieldCount, 0, 0, 0, 0, 0, 0, isolate); | |
| 1072 else | |
| 1073 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionT
emplate, "TestInterfacePython", V8TestInterfaceEmpty::domTemplate(isolate), V8Te
stInterfacePython::internalFieldCount, | |
| 1074 V8TestInterfacePythonAttributes, WTF_ARRAY_LENGTH(V8TestInterfacePyt
honAttributes), | |
| 1075 0, 0, | |
| 1076 V8TestInterfacePythonMethods, WTF_ARRAY_LENGTH(V8TestInterfacePython
Methods), | |
| 1077 isolate); | |
| 1078 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTempla
te->InstanceTemplate(); | |
| 1079 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED prototypeTemplate = functionTempl
ate->PrototypeTemplate(); | |
| 1080 if (RuntimeEnabledFeatures::implementsFeatureNameEnabled()) { | |
| 1081 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1082 {"implementsRuntimeEnabledNodeAttribute", TestInterfacePythonImplementat
ionV8Internal::implementsRuntimeEnabledNodeAttributeAttributeGetterCallback, Tes
tInterfacePythonImplementationV8Internal::implementsRuntimeEnabledNodeAttributeA
ttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), st
atic_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */}; | |
| 1083 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1084 } | |
| 1085 if (RuntimeEnabledFeatures::implements2FeatureNameEnabled()) { | |
| 1086 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1087 {"implements2StringAttribute", TestInterfacePythonImplementationV8Intern
al::implements2StringAttributeAttributeGetterCallback, TestInterfacePythonImplem
entationV8Internal::implements2StringAttributeAttributeSetterCallback, 0, 0, 0,
static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(
v8::None), 0 /* on instance */}; | |
| 1088 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1089 } | |
| 1090 #if ENABLE(PARTIAL_CONDITION) | |
| 1091 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) { | |
| 1092 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1093 {"partialLongAttribute", TestInterfacePythonImplementationV8Internal::pa
rtialLongAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8In
ternal::partialLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::Ac
cessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on
instance */}; | |
| 1094 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1095 } | |
| 1096 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1097 #if ENABLE(PARTIAL_CONDITION) | |
| 1098 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) { | |
| 1099 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1100 {"partialCallWithExecutionContextLongAttribute", TestInterfacePythonImpl
ementationV8Internal::partialCallWithExecutionContextLongAttributeAttributeGette
rCallback, TestInterfacePythonImplementationV8Internal::partialCallWithExecution
ContextLongAttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessCont
rol>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instanc
e */}; | |
| 1101 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1102 } | |
| 1103 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1104 #if ENABLE(PARTIAL_CONDITION) | |
| 1105 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) { | |
| 1106 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1107 {"enumAttribute", TestInterfacePythonImplementationV8Internal::enumAttri
buteAttributeGetterCallback, TestInterfacePythonImplementationV8Internal::enumAt
tributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFA
ULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */}; | |
| 1108 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1109 } | |
| 1110 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1111 static const V8DOMConfiguration::ConstantConfiguration V8TestInterfacePython
Constants[] = { | |
| 1112 {"UNSIGNED_LONG", 0}, | |
| 1113 {"IMPLEMENTS_CONSTANT_1", 1}, | |
| 1114 {"IMPLEMENTS_CONSTANT_2", 2}, | |
| 1115 {"PARTIAL2_UNSIGNED_SHORT", 0}, | |
| 1116 }; | |
| 1117 V8DOMConfiguration::installConstants(functionTemplate, prototypeTemplate, V8
TestInterfacePythonConstants, WTF_ARRAY_LENGTH(V8TestInterfacePythonConstants),
isolate); | |
| 1118 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) { | |
| 1119 static const V8DOMConfiguration::ConstantConfiguration constantConfigura
tion = {"PARTIAL_UNSIGNED_SHORT", static_cast<signed int>(0)}; | |
| 1120 V8DOMConfiguration::installConstants(functionTemplate, prototypeTemplate
, &constantConfiguration, 1, isolate); | |
| 1121 } | |
| 1122 COMPILE_ASSERT(0 == TestInterfacePythonImplementation::UNSIGNED_LONG, TheVal
ueOfTestInterfacePythonImplementation_UNSIGNED_LONGDoesntMatchWithImplementation
); | |
| 1123 COMPILE_ASSERT(1 == TestImplements::IMPLEMENTS_CONSTANT_1, TheValueOfTestInt
erfacePythonImplementation_IMPLEMENTS_CONSTANT_1DoesntMatchWithImplementation); | |
| 1124 COMPILE_ASSERT(2 == TestImplements::IMPLEMENTS_REFLECT_CONSTANT, TheValueOfT
estInterfacePythonImplementation_IMPLEMENTS_REFLECT_CONSTANTDoesntMatchWithImple
mentation); | |
| 1125 COMPILE_ASSERT(0 == TestPartialInterfacePython::PARTIAL_UNSIGNED_SHORT, TheV
alueOfTestInterfacePythonImplementation_PARTIAL_UNSIGNED_SHORTDoesntMatchWithImp
lementation); | |
| 1126 COMPILE_ASSERT(0 == TestPartialInterfacePythonImplementation::PARTIAL2_UNSIG
NED_SHORT, TheValueOfTestInterfacePythonImplementation_PARTIAL2_UNSIGNED_SHORTDo
esntMatchWithImplementation); | |
| 1127 functionTemplate->InstanceTemplate()->SetCallAsFunctionHandler(V8TestInterfa
cePython::legacyCallCustom); | |
| 1128 functionTemplate->Set(v8AtomicString(isolate, "implementsStaticVoidMethod"),
v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal:
:implementsStaticVoidMethodMethodCallback, v8Undefined(), v8::Local<v8::Signatur
e>(), 0)); | |
| 1129 if (RuntimeEnabledFeatures::implements2FeatureNameEnabled()) | |
| 1130 prototypeTemplate->Set(v8AtomicString(isolate, "implements2VoidMethod"),
v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal:
:implements2VoidMethodMethodCallback, v8Undefined(), defaultSignature, 0)); | |
| 1131 functionTemplate->Set(v8AtomicString(isolate, "implements3StaticVoidMethod")
, v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal
::implements3StaticVoidMethodMethodCallback, v8Undefined(), v8::Local<v8::Signat
ure>(), 0)); | |
| 1132 #if ENABLE(PARTIAL_CONDITION) | |
| 1133 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) | |
| 1134 prototypeTemplate->Set(v8AtomicString(isolate, "partialVoidMethod"), v8:
:FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal::par
tialVoidMethodMethodCallback, v8Undefined(), defaultSignature, 0)); | |
| 1135 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1136 #if ENABLE(PARTIAL_CONDITION) | |
| 1137 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) | |
| 1138 functionTemplate->Set(v8AtomicString(isolate, "partialStaticVoidMethod")
, v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal
::partialStaticVoidMethodMethodCallback, v8Undefined(), v8::Local<v8::Signature>
(), 0)); | |
| 1139 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1140 #if ENABLE(PARTIAL_CONDITION) | |
| 1141 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) | |
| 1142 prototypeTemplate->Set(v8AtomicString(isolate, "partialVoidMethodLongArg
"), v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Intern
al::partialVoidMethodLongArgMethodCallback, v8Undefined(), defaultSignature, 1))
; | |
| 1143 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1144 #if ENABLE(PARTIAL_CONDITION) | |
| 1145 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) | |
| 1146 prototypeTemplate->Set(v8AtomicString(isolate, "partialCallWithExecution
ContextRaisesExceptionVoidMethod"), v8::FunctionTemplate::New(isolate, TestInter
facePythonImplementationV8Internal::partialCallWithExecutionContextRaisesExcepti
onVoidMethodMethodCallback, v8Undefined(), defaultSignature, 0)); | |
| 1147 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1148 #if ENABLE(PARTIAL_CONDITION) | |
| 1149 if (RuntimeEnabledFeatures::partialFeatureNameEnabled()) | |
| 1150 prototypeTemplate->Set(v8AtomicString(isolate, "methodThatTakesCallback"
), v8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Interna
l::methodThatTakesCallbackMethodCallback, v8Undefined(), defaultSignature, 1)); | |
| 1151 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1152 functionTemplate->Set(v8AtomicString(isolate, "partial2StaticVoidMethod"), v
8::FunctionTemplate::New(isolate, TestInterfacePythonImplementationV8Internal::p
artial2StaticVoidMethodMethodCallback, v8Undefined(), v8::Local<v8::Signature>()
, 0)); | |
| 1153 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "staticStrin
gAttribute"), TestInterfacePythonImplementationV8Internal::staticStringAttribute
AttributeGetterCallback, TestInterfacePythonImplementationV8Internal::staticStri
ngAttributeAttributeSetterCallback, v8::External::New(isolate, 0), static_cast<v
8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignature>(), static_cas
t<v8::AccessControl>(v8::DEFAULT)); | |
| 1154 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "implementsS
taticReadOnlyLongAttribute"), TestInterfacePythonImplementationV8Internal::imple
mentsStaticReadOnlyLongAttributeAttributeGetterCallback, 0, v8::External::New(is
olate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::Accessor
Signature>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1155 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "implementsS
taticStringAttribute"), TestInterfacePythonImplementationV8Internal::implementsS
taticStringAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8
Internal::implementsStaticStringAttributeAttributeSetterCallback, v8::External::
New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::Ac
cessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1156 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "implements2
StaticStringAttribute"), TestInterfacePythonImplementationV8Internal::implements
2StaticStringAttributeAttributeGetterCallback, TestInterfacePythonImplementation
V8Internal::implements2StaticStringAttributeAttributeSetterCallback, v8::Externa
l::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8:
:AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1157 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "implements3
StaticStringAttribute"), TestInterfacePythonImplementationV8Internal::implements
3StaticStringAttributeAttributeGetterCallback, TestInterfacePythonImplementation
V8Internal::implements3StaticStringAttributeAttributeSetterCallback, v8::Externa
l::New(isolate, 0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8:
:AccessorSignature>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1158 #if ENABLE(PARTIAL_CONDITION) | |
| 1159 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "partialStat
icLongAttribute"), TestInterfacePythonImplementationV8Internal::partialStaticLon
gAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8Internal::
partialStaticLongAttributeAttributeSetterCallback, v8::External::New(isolate, 0)
, static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignature
>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1160 #endif // ENABLE(PARTIAL_CONDITION) | |
| 1161 functionTemplate->SetNativeDataProperty(v8AtomicString(isolate, "partial2Sta
ticLongAttribute"), TestInterfacePythonImplementationV8Internal::partial2StaticL
ongAttributeAttributeGetterCallback, TestInterfacePythonImplementationV8Internal
::partial2StaticLongAttributeAttributeSetterCallback, v8::External::New(isolate,
0), static_cast<v8::PropertyAttribute>(v8::None), v8::Handle<v8::AccessorSignat
ure>(), static_cast<v8::AccessControl>(v8::DEFAULT)); | |
| 1162 | |
| 1163 // Custom toString template | |
| 1164 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData:
:current()->toStringTemplate()); | |
| 1165 } | |
| 1166 | |
| 1167 v8::Handle<v8::FunctionTemplate> V8TestInterfacePython::domTemplate(v8::Isolate*
isolate) | |
| 1168 { | |
| 1169 V8PerIsolateData* data = V8PerIsolateData::from(isolate); | |
| 1170 v8::Local<v8::FunctionTemplate> result = data->existingDOMTemplate(const_cas
t<WrapperTypeInfo*>(&wrapperTypeInfo)); | |
| 1171 if (!result.IsEmpty()) | |
| 1172 return result; | |
| 1173 | |
| 1174 TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate"); | |
| 1175 result = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidCons
tructorMode); | |
| 1176 configureV8TestInterfacePythonTemplate(result, isolate); | |
| 1177 data->setDOMTemplate(const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), result)
; | |
| 1178 return result; | |
| 1179 } | |
| 1180 | |
| 1181 bool V8TestInterfacePython::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isola
te* isolate) | |
| 1182 { | |
| 1183 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu
e); | |
| 1184 } | |
| 1185 | |
| 1186 v8::Handle<v8::Object> V8TestInterfacePython::findInstanceInPrototypeChain(v8::H
andle<v8::Value> v8Value, v8::Isolate* isolate) | |
| 1187 { | |
| 1188 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe
rTypeInfo, v8Value); | |
| 1189 } | |
| 1190 | |
| 1191 TestInterfacePythonImplementation* V8TestInterfacePython::toNativeWithTypeCheck(
v8::Isolate* isolate, v8::Handle<v8::Value> value) | |
| 1192 { | |
| 1193 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje
ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) :
0; | |
| 1194 } | |
| 1195 | |
| 1196 void V8TestInterfacePython::installPerContextEnabledProperties(v8::Handle<v8::Ob
ject> instanceTemplate, TestInterfacePythonImplementation* impl, v8::Isolate* is
olate) | |
| 1197 { | |
| 1198 v8::Local<v8::Object> prototypeTemplate = v8::Local<v8::Object>::Cast(instan
ceTemplate->GetPrototype()); | |
| 1199 if (ContextFeatures::implementsContextNameEnabled(impl->document())) { | |
| 1200 static const V8DOMConfiguration::AttributeConfiguration attributeConfigu
ration =\ | |
| 1201 {"implementsPerContextEnabledNodeAttribute", TestInterfacePythonImplemen
tationV8Internal::implementsPerContextEnabledNodeAttributeAttributeGetterCallbac
k, TestInterfacePythonImplementationV8Internal::implementsPerContextEnabledNodeA
ttributeAttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEF
AULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */}; | |
| 1202 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate
, attributeConfiguration, isolate); | |
| 1203 } | |
| 1204 } | |
| 1205 | |
| 1206 ActiveDOMObject* V8TestInterfacePython::toActiveDOMObject(v8::Handle<v8::Object>
wrapper) | |
| 1207 { | |
| 1208 return toNative(wrapper); | |
| 1209 } | |
| 1210 | |
| 1211 void V8TestInterfacePython::derefObject(void* object) | |
| 1212 { | |
| 1213 fromInternalPointer(object)->deref(); | |
| 1214 } | |
| 1215 | |
| 1216 template<> | |
| 1217 v8::Handle<v8::Value> toV8NoInline(TestInterfacePythonImplementation* impl, v8::
Handle<v8::Object> creationContext, v8::Isolate* isolate) | |
| 1218 { | |
| 1219 return toV8(impl, creationContext, isolate); | |
| 1220 } | |
| 1221 | |
| 1222 } // namespace WebCore | |
| 1223 #endif // ENABLE(CONDITION) | |
| OLD | NEW |