Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
index 524e40ecaa008e98d40fd479b2b6c00cd0d238e1..6f5cc7f429e1f884f3e343c0ad4a230d11c9964c 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp |
@@ -26,8 +26,9 @@ namespace blink { |
void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value, TestDictionary& impl, ExceptionState& exceptionState) |
{ |
- if (isUndefinedOrNull(v8Value)) |
+ if (isUndefinedOrNull(v8Value)) { |
return; |
+ } |
if (!v8Value->IsObject()) { |
exceptionState.throwTypeError("cannot convert to dictionary."); |
return; |