| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef CORE_FXCRT_INCLUDE_FX_MEMORY_H_ | 7 #ifndef CORE_FXCRT_INCLUDE_FX_MEMORY_H_ |
| 8 #define CORE_FXCRT_INCLUDE_FX_MEMORY_H_ | 8 #define CORE_FXCRT_INCLUDE_FX_MEMORY_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_system.h" | 10 #include "core/fxcrt/include/fx_system.h" |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 struct FxFreeDeleter { | 93 struct FxFreeDeleter { |
| 94 inline void operator()(void* ptr) const { FX_Free(ptr); } | 94 inline void operator()(void* ptr) const { FX_Free(ptr); } |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 // Used with std::unique_ptr to Release() objects that can't be deleted. | 97 // Used with std::unique_ptr to Release() objects that can't be deleted. |
| 98 template <class T> | 98 template <class T> |
| 99 struct ReleaseDeleter { | 99 struct ReleaseDeleter { |
| 100 inline void operator()(T* ptr) const { ptr->Release(); } | 100 inline void operator()(T* ptr) const { ptr->Release(); } |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 class CFX_DestructObject { | 103 class CFX_Deletable { |
| 104 public: | 104 public: |
| 105 virtual ~CFX_DestructObject() {} | 105 virtual ~CFX_Deletable() {} |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 #endif // __cplusplus | 108 #endif // __cplusplus |
| 109 | 109 |
| 110 #endif // CORE_FXCRT_INCLUDE_FX_MEMORY_H_ | 110 #endif // CORE_FXCRT_INCLUDE_FX_MEMORY_H_ |
| OLD | NEW |