| 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 24 matching lines...) Expand all Loading... |
| 35 #pragma clang diagnostic pop | 35 #pragma clang diagnostic pop |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestInterfac
eConstructor2.h. | 38 // This static member must be declared by DEFINE_WRAPPERTYPEINFO in TestInterfac
eConstructor2.h. |
| 39 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in | 39 // For details, see the comment of DEFINE_WRAPPERTYPEINFO in |
| 40 // bindings/core/v8/ScriptWrappable.h. | 40 // bindings/core/v8/ScriptWrappable.h. |
| 41 const WrapperTypeInfo& TestInterfaceConstructor2::s_wrapperTypeInfo = V8TestInte
rfaceConstructor2::wrapperTypeInfo; | 41 const WrapperTypeInfo& TestInterfaceConstructor2::s_wrapperTypeInfo = V8TestInte
rfaceConstructor2::wrapperTypeInfo; |
| 42 | 42 |
| 43 // not [ActiveScriptWrappable] | 43 // not [ActiveScriptWrappable] |
| 44 static_assert( | 44 static_assert( |
| 45 !std::is_base_of<ActiveScriptWrappable, TestInterfaceConstructor2>::value, | 45 !std::is_base_of<ActiveScriptWrappableBase, TestInterfaceConstructor2>::valu
e, |
| 46 "TestInterfaceConstructor2 inherits from ActiveScriptWrappable, but is not s
pecifying " | 46 "TestInterfaceConstructor2 inherits from ActiveScriptWrappable<>, but is not
specifying " |
| 47 "[ActiveScriptWrappable] extended attribute in the IDL file. " | 47 "[ActiveScriptWrappable] extended attribute in the IDL file. " |
| 48 "Be consistent."); | 48 "Be consistent."); |
| 49 static_assert( | 49 static_assert( |
| 50 std::is_same<decltype(&TestInterfaceConstructor2::hasPendingActivity), | 50 std::is_same<decltype(&TestInterfaceConstructor2::hasPendingActivity), |
| 51 decltype(&ScriptWrappable::hasPendingActivity)>::value, | 51 decltype(&ScriptWrappable::hasPendingActivity)>::value, |
| 52 "TestInterfaceConstructor2 is overriding hasPendingActivity(), but is not sp
ecifying " | 52 "TestInterfaceConstructor2 is overriding hasPendingActivity(), but is not sp
ecifying " |
| 53 "[ActiveScriptWrappable] extended attribute in the IDL file. " | 53 "[ActiveScriptWrappable] extended attribute in the IDL file. " |
| 54 "Be consistent."); | 54 "Be consistent."); |
| 55 | 55 |
| 56 namespace TestInterfaceConstructor2V8Internal { | 56 namespace TestInterfaceConstructor2V8Internal { |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 258 |
| 259 v8::Local<v8::Object> V8TestInterfaceConstructor2::findInstanceInPrototypeChain(
v8::Local<v8::Value> v8Value, v8::Isolate* isolate) { | 259 v8::Local<v8::Object> V8TestInterfaceConstructor2::findInstanceInPrototypeChain(
v8::Local<v8::Value> v8Value, v8::Isolate* isolate) { |
| 260 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperT
ypeInfo, v8Value); | 260 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrapperT
ypeInfo, v8Value); |
| 261 } | 261 } |
| 262 | 262 |
| 263 TestInterfaceConstructor2* V8TestInterfaceConstructor2::toImplWithTypeCheck(v8::
Isolate* isolate, v8::Local<v8::Value> value) { | 263 TestInterfaceConstructor2* V8TestInterfaceConstructor2::toImplWithTypeCheck(v8::
Isolate* isolate, v8::Local<v8::Value> value) { |
| 264 return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)
) : nullptr; | 264 return hasInstance(value, isolate) ? toImpl(v8::Local<v8::Object>::Cast(value)
) : nullptr; |
| 265 } | 265 } |
| 266 | 266 |
| 267 } // namespace blink | 267 } // namespace blink |
| OLD | NEW |