• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2016 The PDFium Authors
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_CPDFSDK_PAUSEADAPTER_H_
8 #define FPDFSDK_CPDFSDK_PAUSEADAPTER_H_
9 
10 #include "core/fxcrt/pauseindicator_iface.h"
11 #include "core/fxcrt/unowned_ptr.h"
12 #include "public/fpdf_progressive.h"
13 
14 class CPDFSDK_PauseAdapter final : public PauseIndicatorIface {
15  public:
16   explicit CPDFSDK_PauseAdapter(IFSDK_PAUSE* IPause);
17   ~CPDFSDK_PauseAdapter() override;
18 
19   bool NeedToPauseNow() override;
20 
21  private:
22   UnownedPtr<IFSDK_PAUSE> const m_IPause;
23 };
24 
25 #endif  // FPDFSDK_CPDFSDK_PAUSEADAPTER_H_
26