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