diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-05-30 15:29:21 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-30 23:37:33 +0000 |
commit | 26cb2fa42b1a90146f9ab5c0b83ee8b48703baf4 (patch) | |
tree | e924e7eacb5b229a2c11f857d9232b41a82c2851 /core/fxcodec/codec/ccodec_gifmodule.h | |
parent | 2c200030b55faebbea7d7b30aba7ff7c5791b699 (diff) | |
download | pdfium-26cb2fa42b1a90146f9ab5c0b83ee8b48703baf4.tar.xz |
Use unowned ptr back to delegates in codec moduleschromium/3117
Change-Id: I8e31305dcf888665cb0656ac518f07541566b177
Reviewed-on: https://pdfium-review.googlesource.com/6084
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcodec/codec/ccodec_gifmodule.h')
-rw-r--r-- | core/fxcodec/codec/ccodec_gifmodule.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/fxcodec/codec/ccodec_gifmodule.h b/core/fxcodec/codec/ccodec_gifmodule.h index 5f3f45f83f..2ccd4f407a 100644 --- a/core/fxcodec/codec/ccodec_gifmodule.h +++ b/core/fxcodec/codec/ccodec_gifmodule.h @@ -10,6 +10,7 @@ #include <memory> #include "core/fxcodec/lgif/fx_gif.h" +#include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_coordinates.h" #include "core/fxcrt/fx_system.h" @@ -54,11 +55,11 @@ class CCodec_GifModule { int frame_num, CFX_DIBAttribute* pAttribute); - Delegate* GetDelegate() const { return m_pDelegate; } + Delegate* GetDelegate() const { return m_pDelegate.Get(); } void SetDelegate(Delegate* pDelegate) { m_pDelegate = pDelegate; } protected: - Delegate* m_pDelegate; + CFX_UnownedPtr<Delegate> m_pDelegate; char m_szLastError[256]; }; |