Index: Source/bindings/tests/results/V8TestInterface.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp |
index b2b235d4e7fa50f005dbdcace86a96fecebf6161..96fbac87a033510f274ae6beedb7d7adeefa72a6 100644 |
--- a/Source/bindings/tests/results/V8TestInterface.cpp |
+++ b/Source/bindings/tests/results/V8TestInterface.cpp |
@@ -52,7 +52,6 @@ |
#include "platform/TraceEvent.h" |
#include "wtf/GetPtr.h" |
#include "wtf/RefPtr.h" |
-#include "wtf/UnusedParam.h" |
namespace WebCore { |
@@ -844,13 +843,10 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfaceTemplate(v8::Han |
0, 0, |
V8TestInterfaceMethods, WTF_ARRAY_LENGTH(V8TestInterfaceMethods), |
isolate, currentWorldType); |
- UNUSED_PARAM(defaultSignature); |
functionTemplate->SetCallHandler(V8TestInterface::constructorCallback); |
functionTemplate->SetLength(1); |
- v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceTemplate(); |
- v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->PrototypeTemplate(); |
- UNUSED_PARAM(instanceTemplate); |
- UNUSED_PARAM(prototypeTemplate); |
+ v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate(); |
+ v8::Local<v8::ObjectTemplate> ALLOW_UNUSED prototypeTemplate = functionTemplate->PrototypeTemplate(); |
if (RuntimeEnabledFeatures::featureName23Enabled()) { |
static const V8DOMConfiguration::AttributeConfiguration attributeConfiguration =\ |
{"Node23", TestInterfaceV8Internal::Node23AttributeGetterCallback, TestInterfaceV8Internal::Node23AttributeSetterCallback, 0, 0, 0, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */}; |