| Index: Source/bindings/v8/V8ThrowException.cpp | 
| diff --git a/Source/bindings/v8/V8ThrowException.cpp b/Source/bindings/v8/V8ThrowException.cpp | 
| index 0f1ffcc69d3d1bc520682ec3328a2885c9cccc12..5ace66872c63548c6d15cf9ef20a21b0b49b8db6 100644 | 
| --- a/Source/bindings/v8/V8ThrowException.cpp | 
| +++ b/Source/bindings/v8/V8ThrowException.cpp | 
| @@ -55,7 +55,7 @@ v8::Handle<v8::Value> V8ThrowException::createDOMException(int ec, const String& | 
| if (ec == TypeError) | 
| return V8ThrowException::createTypeError(sanitizedMessage, isolate); | 
|  | 
| -    RefPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanitizedMessage); | 
| +    RefPtrWillBeRawPtr<DOMException> domException = DOMException::create(ec, sanitizedMessage, unsanitizedMessage); | 
| v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate); | 
|  | 
| if (exception.IsEmpty()) | 
|  |