| 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. | 5 // This file has been auto-generated by code_generator_v8.py. |
| 6 // DO NOT MODIFY! | 6 // DO NOT MODIFY! |
| 7 | 7 |
| 8 // This file has been generated from the Jinja2 template in | 8 // This file has been generated from the Jinja2 template in |
| 9 // third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl | 9 // third_party/WebKit/Source/bindings/templates/interface.cpp.tmpl |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #pragma clang diagnostic pop | 38 #pragma clang diagnostic pop |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestInterfac
eConstructor.h. | 41 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestInterfac
eConstructor.h. |
| 42 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in | 42 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in |
| 43 // bindings/core/v8/ScriptWrappable.h. | 43 // bindings/core/v8/ScriptWrappable.h. |
| 44 const WrapperTypeInfo& TestInterfaceConstructor::s_wrapperTypeInfo = V8TestInter
faceConstructor::wrapperTypeInfo; | 44 const WrapperTypeInfo& TestInterfaceConstructor::s_wrapperTypeInfo = V8TestInter
faceConstructor::wrapperTypeInfo; |
| 45 | 45 |
| 46 // not [ActiveScriptWrappable] | 46 // not [ActiveScriptWrappable] |
| 47 static_assert( | 47 static_assert( |
| 48 !std::is_base_of<ActiveScriptWrappable, TestInterfaceConstructor>::value, | 48 !std::is_base_of<ActiveScriptWrappableBase, TestInterfaceConstructor>::value
, |
| 49 "TestInterfaceConstructor inherits from ActiveScriptWrappable, but is not sp
ecifying " | 49 "TestInterfaceConstructor inherits from ActiveScriptWrappable<>, but is not
specifying " |
| 50 "[ActiveScriptWrappable] extended attribute in the IDL file. " | 50 "[ActiveScriptWrappable] extended attribute in the IDL file. " |
| 51 "Be consistent."); | 51 "Be consistent."); |
| 52 static_assert( | 52 static_assert( |
| 53 std::is_same<decltype(&TestInterfaceConstructor::hasPendingActivity), | 53 std::is_same<decltype(&TestInterfaceConstructor::hasPendingActivity), |
| 54 decltype(&ScriptWrappable::hasPendingActivity)>::value, | 54 decltype(&ScriptWrappable::hasPendingActivity)>::value, |
| 55 "TestInterfaceConstructor is overriding hasPendingActivity(), but is not spe
cifying " | 55 "TestInterfaceConstructor is overriding hasPendingActivity(), but is not spe
cifying " |
| 56 "[ActiveScriptWrappable] extended attribute in the IDL file. " | 56 "[ActiveScriptWrappable] extended attribute in the IDL file. " |
| 57 "Be consistent."); | 57 "Be consistent."); |
| 58 | 58 |
| 59 namespace TestInterfaceConstructorV8Internal { | 59 namespace TestInterfaceConstructorV8Internal { |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 405 |
| 406 v8::Local<v8::Object> V8TestInterfaceConstructor::findInstanceInPrototypeChain(v
8::Local<v8::Value> v8Value, v8::Isolate* isolate) { | 406 v8::Local<v8::Object> V8TestInterfaceConstructor::findInstanceInPrototypeChain(v
8::Local<v8::Value> v8Value, v8::Isolate* isolate) { |
| 407 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperT
ypeInfo, v8Value); | 407 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperT
ypeInfo, v8Value); |
| 408 } | 408 } |
| 409 | 409 |
| 410 TestInterfaceConstructor* V8TestInterfaceConstructor::toImplWithTypeCheck(v8::Is
olate* isolate, v8::Local<v8::Value> value) { | 410 TestInterfaceConstructor* V8TestInterfaceConstructor::toImplWithTypeCheck(v8::Is
olate* isolate, v8::Local<v8::Value> value) { |
| 411 return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)
) : nullptr; | 411 return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)
) : nullptr; |
| 412 } | 412 } |
| 413 | 413 |
| 414 } // namespace blink | 414 } // namespace blink |
| OLD | NEW |