Index: third_party/WebKit/Source/bindings/tests/results/core/V8ArrayBufferView.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8ArrayBufferView.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8ArrayBufferView.cpp |
index 448e292f39302c4605b4213c536ce1e35fabab25..f16316dea135a5d9dfbdae4bb643c9864623bf6f 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8ArrayBufferView.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8ArrayBufferView.cpp |
@@ -44,6 +44,12 @@ const WrapperTypeInfo V8ArrayBufferView::wrapperTypeInfo = { gin::kEmbedderBlink |
// bindings/core/v8/ScriptWrappable.h. |
const WrapperTypeInfo& TestArrayBufferView::s_wrapperTypeInfo = V8ArrayBufferView::wrapperTypeInfo; |
+static_assert( |
+ !std::is_base_of<ActiveScriptWrappable, TestArrayBufferView>::value, |
+ "TestArrayBufferView inherits from ActiveScriptWrappable, but does not specify " |
+ "[ActiveScriptWrappable] extended attribute in the IDL file. " |
+ "Be consistent."); |
+ |
TestArrayBufferView* V8ArrayBufferView::toImpl(v8::Local<v8::Object> object) |
{ |
ASSERT(object->IsArrayBufferView()); |