diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-09 00:39:54 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:28 -0400 |
commit | 9bdc4918bf536289d9691fa6adbb04dbf61f0397 (patch) | |
tree | 8e02ef7d80845dc17fc0fe3170d2d2efe38d5334 /js/src/proxy/Proxy.cpp | |
parent | 632e4bc54c7e90d0e9d642eb949ce1a9a819f582 (diff) | |
download | aura-central-9bdc4918bf536289d9691fa6adbb04dbf61f0397.tar.gz |
1320408 - Part 22: Remove JSContext* parameter from ProxyObject::renew and Wrapper::Renew.
Diffstat (limited to 'js/src/proxy/Proxy.cpp')
-rw-r--r-- | js/src/proxy/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/proxy/Proxy.cpp b/js/src/proxy/Proxy.cpp index 026b40c7b..2c1cffb77 100644 --- a/js/src/proxy/Proxy.cpp +++ b/js/src/proxy/Proxy.cpp @@ -774,7 +774,7 @@ js::NewProxyObject(JSContext* cx, const BaseProxyHandler* handler, HandleValue p } void -ProxyObject::renew(JSContext* cx, const BaseProxyHandler* handler, const Value& priv) +ProxyObject::renew(const BaseProxyHandler* handler, const Value& priv) { MOZ_ASSERT(!IsInsideNursery(this)); MOZ_ASSERT_IF(IsCrossCompartmentWrapper(this), IsDeadProxyObject(this)); |