| Index: Source/bindings/tests/results/V8TestException.cpp | 
| diff --git a/Source/bindings/tests/results/V8TestException.cpp b/Source/bindings/tests/results/V8TestException.cpp | 
| index 2deebd8de3505f01e4531eef97be356c7c04ea9c..f6618c192718d0bd9917f77f9d6c07fae467a187 100644 | 
| --- a/Source/bindings/tests/results/V8TestException.cpp | 
| +++ b/Source/bindings/tests/results/V8TestException.cpp | 
| @@ -39,7 +39,6 @@ | 
| #include "core/dom/ContextFeatures.h" | 
| #include "core/dom/Document.h" | 
| #include "platform/TraceEvent.h" | 
| -#include "wtf/UnusedParam.h" | 
|  | 
| namespace WebCore { | 
|  | 
| @@ -98,11 +97,8 @@ static v8::Handle<v8::FunctionTemplate> ConfigureV8TestExceptionTemplate(v8::Han | 
| 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()); | 
|  |