diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-20 18:08:16 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-22 12:21:53 +0200 |
commit | d3406cafff5e5c284f07419043eec4ae810db63a (patch) | |
tree | 1b3b6163368fec80db2de01f6648a0c881d15afa /dom/canvas/WebGLObjectModel.h | |
parent | 0cd2ef552db767ada217c3f61fde65dc5cecc1ef (diff) | |
download | UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.gz UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.lz UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.xz UXP-d3406cafff5e5c284f07419043eec4ae810db63a.zip |
Use WeakPtr for extension parent pointer.
Diffstat (limited to 'dom/canvas/WebGLObjectModel.h')
-rw-r--r-- | dom/canvas/WebGLObjectModel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/canvas/WebGLObjectModel.h b/dom/canvas/WebGLObjectModel.h index b18b790c0..6371c7b03 100644 --- a/dom/canvas/WebGLObjectModel.h +++ b/dom/canvas/WebGLObjectModel.h @@ -6,8 +6,8 @@ #ifndef WEBGLOBJECTMODEL_H_ #define WEBGLOBJECTMODEL_H_ +#include "mozilla/WeakPtr.h" #include "nsCycleCollectionNoteChild.h" - #include "WebGLTypes.h" namespace mozilla { @@ -24,7 +24,7 @@ class WebGLContext; class WebGLContextBoundObject { public: - WebGLContext* const mContext; + const WeakPtr<WebGLContext> mContext; private: const uint32_t mContextGeneration; |