Chromium Code Reviews| Index: Source/bindings/core/v8/V8Binding.h |
| diff --git a/Source/bindings/core/v8/V8Binding.h b/Source/bindings/core/v8/V8Binding.h |
| index ec48ec713e6847efc67ab827381cd863024ab1ca..490771d9e8ba5789a2e45b3a3e34bdb80877cc49 100644 |
| --- a/Source/bindings/core/v8/V8Binding.h |
| +++ b/Source/bindings/core/v8/V8Binding.h |
| @@ -353,6 +353,7 @@ inline v8::Handle<v8::String> v8AtomicString(v8::Isolate* isolate, const char* s |
| v8::Local<v8::String> value; |
| if (LIKELY(v8::String::NewFromUtf8(isolate, str, v8::NewStringType::kInternalized, length).ToLocal(&value))) |
| return value; |
| + RELEASE_ASSERT_NOT_REACHED(); |
|
haraken
2015/03/25 08:55:07
Would you add a comment on this?
bashi
2015/03/25 09:14:41
Done.
|
| return v8::String::Empty(isolate); |
| } |