• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
7 #ifndef FPDFSDK_FSDK_PAUSEADAPTER_H_
8 #define FPDFSDK_FSDK_PAUSEADAPTER_H_
9 
10 #include "core/fxcrt/fx_system.h"
11 #include "core/fxcrt/ifx_pauseindicator.h"
12 #include "core/fxcrt/unowned_ptr.h"
13 #include "public/fpdf_progressive.h"
14 
15 class IFSDK_PAUSE_Adapter : public IFX_PauseIndicator {
16  public:
17   explicit IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause);
18   ~IFSDK_PAUSE_Adapter() override;
19 
20   bool NeedToPauseNow() override;
21 
22  private:
23   UnownedPtr<IFSDK_PAUSE> const m_IPause;
24 };
25 
26 #endif  // FPDFSDK_FSDK_PAUSEADAPTER_H_
27