mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1118430 - Mark virtual overridden functions as MOZ_OVERRIDE in dom/fetch; r=baku
This commit is contained in:
parent
535fe9c758
commit
9e77f6568d
@ -110,7 +110,7 @@ public:
|
||||
mInternalHeaders->SetGuard(aGuard, aRv);
|
||||
}
|
||||
|
||||
virtual JSObject* WrapObject(JSContext* aCx);
|
||||
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE;
|
||||
nsISupports* GetParentObject() const { return mOwner; }
|
||||
|
||||
private:
|
||||
|
@ -36,7 +36,7 @@ public:
|
||||
Request(nsIGlobalObject* aOwner, InternalRequest* aRequest);
|
||||
|
||||
JSObject*
|
||||
WrapObject(JSContext* aCx)
|
||||
WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
||||
{
|
||||
return RequestBinding::Wrap(aCx, this);
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ public:
|
||||
Response(const Response& aOther) MOZ_DELETE;
|
||||
|
||||
JSObject*
|
||||
WrapObject(JSContext* aCx)
|
||||
WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
||||
{
|
||||
return ResponseBinding::Wrap(aCx, this);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user