diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-08-30 17:11:19 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-31 01:15:56 +0000 |
commit | cc2b38d41141a939c7ef73c0066418b8d823c681 (patch) | |
tree | d35174ad9f3abea74c46a13dd76969cbd0f749dd /core/fxcrt/ifx_pauseindicator.h | |
parent | 0158106c1c77c6af4f7195d086cb0f2d129de838 (diff) | |
download | pdfium-cc2b38d41141a939c7ef73c0066418b8d823c681.tar.xz |
Split IFX_Pause out of fx_basic
This CL moves IFX_Pause out to its own class from fx_basic and updates
includes as needed.
Change-Id: Iebdd183d8c85aa17570f190f1a7d1602c0af3c8b
Reviewed-on: https://pdfium-review.googlesource.com/12491
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/ifx_pauseindicator.h')
-rw-r--r-- | core/fxcrt/ifx_pauseindicator.h | 16 |
1 files changed, 16 insertions, 0 deletions
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_ |