diff options
author | tsepez <tsepez@chromium.org> | 2016-08-26 10:59:04 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-26 10:59:04 -0700 |
commit | 80f9957fe156bd8e940499491ca8167fe7dad416 (patch) | |
tree | b0c46221fdfc40450d89fd4c55e646bdbc9bc13d /core/fxge | |
parent | 2d396ac157bcd6da78190def936e5eaf278a6ca7 (diff) | |
download | pdfium-80f9957fe156bd8e940499491ca8167fe7dad416.tar.xz |
Rework CFX_CountRef in terms of CFX_RetainPtr.
Make use of existing ref count work rather than re-inventing it.
Review-Url: https://codereview.chromium.org/2281683002
Diffstat (limited to 'core/fxge')
-rw-r--r-- | core/fxge/include/fx_dib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/fxge/include/fx_dib.h b/core/fxge/include/fx_dib.h index 540996cfc1..011e6f7856 100644 --- a/core/fxge/include/fx_dib.h +++ b/core/fxge/include/fx_dib.h @@ -10,6 +10,7 @@ #include <memory> #include <vector> +#include "core/fxcrt/include/cfx_count_ref.h" #include "core/fxcrt/include/fx_basic.h" #include "core/fxcrt/include/fx_coordinates.h" @@ -389,6 +390,7 @@ class CFX_DIBExtractor { }; typedef CFX_CountRef<CFX_DIBitmap> CFX_DIBitmapRef; + class CFX_FilteredDIB : public CFX_DIBSource { public: CFX_FilteredDIB(); |