Index: Source/bindings/tests/results/V8TestInterfacePython2.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfacePython2.cpp b/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
index 4ff8efe734cac21065ccf27a2fd567481c84f0cc..dea998094d5b69c21fb10e613f7614e75db1c17d 100644 |
--- a/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfacePython2.cpp |
@@ -43,7 +43,6 @@ |
#include "core/dom/ContextFeatures.h" |
#include "core/dom/Document.h" |
#include "platform/TraceEvent.h" |
-#include "wtf/UnusedParam.h" |
namespace WebCore { |
@@ -79,17 +78,14 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestInterfacePython2Template( |
{ |
functionTemplate->ReadOnlyPrototype(); |
- v8::Local<v8::Signature> defaultSignature; |
+ v8::Local<v8::Signature> ALLOW_UNUSED defaultSignature; |
defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionTemplate, "TestInterfacePython2", v8::Local<v8::FunctionTemplate>(), V8TestInterfacePython2::internalFieldCount, |
0, 0, |
0, 0, |
0, 0, |
isolate, currentWorldType); |
- UNUSED_PARAM(defaultSignature); |
- 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(); |
// Custom toString template |
functionTemplate->Set(v8::String::NewFromUtf8(isolate, "toString", v8::String::kInternalizedString), V8PerIsolateData::current()->toStringTemplate()); |