| Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp | 
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp | 
| index c1e01d95abef600db76bc4742bd15feda844f56e..4c3d454e00c39b0f59b2cfe4843dc9eb9c96eb94 100644 | 
| --- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp | 
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp | 
| @@ -22,7 +22,7 @@ namespace blink { | 
| #pragma clang diagnostic push | 
| #pragma clang diagnostic ignored "-Wglobal-constructors" | 
| #endif | 
| -const WrapperTypeInfo V8TestInterfaceConstructor3::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceConstructor3::domTemplate, V8TestInterfaceConstructor3::trace, V8TestInterfaceConstructor3::traceWrappers, 0, 0, V8TestInterfaceConstructor3::preparePrototypeAndInterfaceObject, nullptr, "TestInterfaceConstructor3", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent }; | 
| +const WrapperTypeInfo V8TestInterfaceConstructor3::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceConstructor3::domTemplate, V8TestInterfaceConstructor3::trace, V8TestInterfaceConstructor3::traceWrappers, 0, V8TestInterfaceConstructor3::preparePrototypeAndInterfaceObject, nullptr, "TestInterfaceConstructor3", 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::NotInheritFromActiveScriptWrappable, WrapperTypeInfo::NotInheritFromEventTarget, WrapperTypeInfo::Independent }; | 
| #if defined(COMPONENT_BUILD) && defined(WIN32) && COMPILER(CLANG) | 
| #pragma clang diagnostic pop | 
| #endif | 
| @@ -32,9 +32,16 @@ const WrapperTypeInfo V8TestInterfaceConstructor3::wrapperTypeInfo = { gin::kEmb | 
| // bindings/core/v8/ScriptWrappable.h. | 
| const WrapperTypeInfo& TestInterfaceConstructor3::s_wrapperTypeInfo = V8TestInterfaceConstructor3::wrapperTypeInfo; | 
|  | 
| +// not [ActiveScriptWrappable] | 
| static_assert( | 
| !std::is_base_of<ActiveScriptWrappable, TestInterfaceConstructor3>::value, | 
| -    "TestInterfaceConstructor3 inherits from ActiveScriptWrappable, but does not specify " | 
| +    "TestInterfaceConstructor3 inherits from ActiveScriptWrappable, but is not specifying " | 
| +    "[ActiveScriptWrappable] extended attribute in the IDL file.  " | 
| +    "Be consistent."); | 
| +static_assert( | 
| +    std::is_same<decltype(&TestInterfaceConstructor3::hasPendingActivity), | 
| +                 decltype(&ScriptWrappable::hasPendingActivity)>::value, | 
| +    "TestInterfaceConstructor3 is overriding hasPendingActivity(), but is not specifying " | 
| "[ActiveScriptWrappable] extended attribute in the IDL file.  " | 
| "Be consistent."); | 
|  | 
|  |