mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1137151: Marked destructor of |MozNDEFRecord| as protected, r=allstars.chh
This commit is contained in:
parent
1a19355fa1
commit
e5f71d4d51
@ -40,8 +40,6 @@ public:
|
||||
public:
|
||||
MozNDEFRecord(nsISupports* aParent, TNF aTnf = TNF::Empty);
|
||||
|
||||
~MozNDEFRecord();
|
||||
|
||||
nsISupports* GetParentObject() const
|
||||
{
|
||||
return mParent;
|
||||
@ -98,6 +96,10 @@ public:
|
||||
// Structured clone methods use these to clone MozNDEFRecord.
|
||||
bool WriteStructuredClone(JSContext* aCx, JSStructuredCloneWriter* aWriter) const;
|
||||
bool ReadStructuredClone(JSContext* aCx, JSStructuredCloneReader* aReader);
|
||||
|
||||
protected:
|
||||
~MozNDEFRecord();
|
||||
|
||||
private:
|
||||
MozNDEFRecord() = delete;
|
||||
nsRefPtr<nsISupports> mParent;
|
||||
|
Loading…
Reference in New Issue
Block a user