Index: Source/bindings/v8/custom/V8CryptoCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8CryptoCustom.cpp b/Source/bindings/v8/custom/V8CryptoCustom.cpp |
index 9ad21c0b95dd9d995764bb2cb3aab783dabda41a..ff3a69f8ba188c166cc0535e79b952ac47284f88 100644 |
--- a/Source/bindings/v8/custom/V8CryptoCustom.cpp |
+++ b/Source/bindings/v8/custom/V8CryptoCustom.cpp |
@@ -55,7 +55,7 @@ void V8Crypto::getRandomValuesMethodCustom(const v8::FunctionCallbackInfo<v8::Va |
ArrayBufferView* arrayBufferView = V8ArrayBufferView::toNative(v8::Handle<v8::Object>::Cast(buffer)); |
ASSERT(arrayBufferView); |
- ExceptionState es(info.GetIsolate()); |
+ ExceptionState es(info.Holder(), info.GetIsolate()); |
Crypto::getRandomValues(arrayBufferView, es); |
if (es.throwIfNeeded()) |