diff options
Diffstat (limited to 'core/fxcrt')
-rw-r--r-- | core/fxcrt/fx_basic.h | 6 | ||||
-rw-r--r-- | core/fxcrt/ifx_pauseindicator.h | 16 |
2 files changed, 16 insertions, 6 deletions
diff --git a/core/fxcrt/fx_basic.h b/core/fxcrt/fx_basic.h index 7d3f3291c1..c60f0d367b 100644 --- a/core/fxcrt/fx_basic.h +++ b/core/fxcrt/fx_basic.h @@ -22,12 +22,6 @@ #define FX_IsOdd(a) ((a)&1) #endif // PDF_ENABLE_XFA -class IFX_Pause { - public: - virtual ~IFX_Pause() {} - virtual bool NeedToPauseNow() = 0; -}; - uint32_t GetBits32(const uint8_t* pData, int bitpos, int nbits); #endif // CORE_FXCRT_FX_BASIC_H_ diff --git a/core/fxcrt/ifx_pauseindicator.h b/core/fxcrt/ifx_pauseindicator.h new file mode 100644 index 0000000000..79c6016706 --- /dev/null +++ b/core/fxcrt/ifx_pauseindicator.h @@ -0,0 +1,16 @@ +// Copyright 2017 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef CORE_FXCRT_IFX_PAUSEINDICATOR_H_ +#define CORE_FXCRT_IFX_PAUSEINDICATOR_H_ + +class IFX_PauseIndicator { + public: + virtual ~IFX_PauseIndicator() {} + virtual bool NeedToPauseNow() = 0; +}; + +#endif // CORE_FXCRT_IFX_PAUSEINDICATOR_H_ |