diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-10-26 13:08:45 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-10-26 16:19:04 +0200 |
commit | c59c9682d351e641f184e1f8095f399fee179f62 (patch) | |
tree | 137c732cac39f8cf80ed7e682a4c834c6997d390 /js/src/jswrapper.h | |
parent | 565ae72f5af3bcc9fb85945233e2a7afa115d435 (diff) | |
download | UXP-c59c9682d351e641f184e1f8095f399fee179f62.tar UXP-c59c9682d351e641f184e1f8095f399fee179f62.tar.gz UXP-c59c9682d351e641f184e1f8095f399fee179f62.tar.lz UXP-c59c9682d351e641f184e1f8095f399fee179f62.tar.xz UXP-c59c9682d351e641f184e1f8095f399fee179f62.zip |
Issue #1257 - Part1: Remove watch class-hook and proxy trap.
Diffstat (limited to 'js/src/jswrapper.h')
-rw-r--r-- | js/src/jswrapper.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/js/src/jswrapper.h b/js/src/jswrapper.h index 5f3704e32..32336c68b 100644 --- a/js/src/jswrapper.h +++ b/js/src/jswrapper.h @@ -315,13 +315,6 @@ class JS_FRIEND_API(SecurityWrapper) : public Base virtual bool regexp_toShared(JSContext* cx, HandleObject proxy, RegExpGuard* g) const override; virtual bool boxedValue_unbox(JSContext* cx, HandleObject proxy, MutableHandleValue vp) const override; - // Allow isCallable and isConstructor. They used to be class-level, and so could not be guarded - // against. - - virtual bool watch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id, - JS::HandleObject callable) const override; - virtual bool unwatch(JSContext* cx, JS::HandleObject proxy, JS::HandleId id) const override; - /* * Allow our subclasses to select the superclass behavior they want without * needing to specify an exact superclass. |