weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 1 | // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 7 | #ifndef FPDFSDK_FSDK_PAUSEADAPTER_H_ |
| 8 | #define FPDFSDK_FSDK_PAUSEADAPTER_H_ |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 9 | |
dsinclair | a52ab74 | 2016-09-29 13:59:29 -0700 | [diff] [blame] | 10 | #include "core/fxcrt/fx_basic.h" |
| 11 | #include "core/fxcrt/fx_system.h" |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 12 | #include "public/fpdf_progressive.h" |
| 13 | |
| 14 | class IFSDK_PAUSE_Adapter : public IFX_Pause { |
| 15 | public: |
| 16 | explicit IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause); |
| 17 | ~IFSDK_PAUSE_Adapter() override; |
| 18 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 19 | bool NeedToPauseNow() override; |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 20 | |
| 21 | private: |
Tom Sepez | 797ca5c | 2017-05-25 12:03:18 -0700 | [diff] [blame] | 22 | CFX_UnownedPtr<IFSDK_PAUSE> const m_IPause; |
weili | 9f515bc | 2016-07-24 08:08:24 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 25 | #endif // FPDFSDK_FSDK_PAUSEADAPTER_H_ |