Index: Source/bindings/core/v8/ToV8.h |
diff --git a/Source/bindings/core/v8/ToV8.h b/Source/bindings/core/v8/ToV8.h |
index 9f37c3a4c8388bb1801940ef255c82779db7cf68..97a063b4192aac76140d6a717c5376a88e544ef1 100644 |
--- a/Source/bindings/core/v8/ToV8.h |
+++ b/Source/bindings/core/v8/ToV8.h |
@@ -48,7 +48,7 @@ inline v8::Handle<v8::Value> toV8(Node* impl, v8::Handle<v8::Object> creationCon |
return ScriptWrappable::fromNode(impl)->wrap(creationContext, isolate); |
} |
-// [Custom=ToV8] |
+// Special versions for DOMWindow and WorkerGlobalScope |
haraken
2015/04/24 11:57:38
and EventTarget
Yuki
2015/04/27 12:42:33
Done.
|
CORE_EXPORT v8::Handle<v8::Value> toV8(DOMWindow*, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
CORE_EXPORT v8::Handle<v8::Value> toV8(EventTarget*, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
@@ -191,7 +191,7 @@ inline v8::Handle<v8::Value> toV8(const ScriptValue& value, v8::Handle<v8::Objec |
inline v8::Handle<v8::Value> toV8(const Dictionary& value, v8::Handle<v8::Object> creationContext, v8::Isolate*) |
{ |
- ASSERT_NOT_REACHED(); |
+ RELEASE_ASSERT_NOT_REACHED(); |
return v8::Handle<v8::Value>(); |
} |