Bug 1428535 - Add missing override specifiers to overridden virtual functions. r=froydnj

MozReview-Commit-ID: DCPTnyBooIe
This commit is contained in:
Chris Peterson
2017-11-05 19:37:28 -08:00
parent ab8be1cee1
commit 677bf4030c
433 changed files with 3797 additions and 3674 deletions

View File

@@ -144,8 +144,8 @@ class JavaScriptShared : public CPOWManager
void decref();
void incref();
bool Unwrap(JSContext* cx, const InfallibleTArray<CpowEntry>& aCpows, JS::MutableHandleObject objp);
bool Wrap(JSContext* cx, JS::HandleObject aObj, InfallibleTArray<CpowEntry>* outCpows);
bool Unwrap(JSContext* cx, const InfallibleTArray<CpowEntry>& aCpows, JS::MutableHandleObject objp) override;
bool Wrap(JSContext* cx, JS::HandleObject aObj, InfallibleTArray<CpowEntry>* outCpows) override;
protected:
bool toVariant(JSContext* cx, JS::HandleValue from, JSVariant* to);