Index: fpdfsdk/include/fsdk_rendercontext.h |
diff --git a/fpdfsdk/include/fsdk_rendercontext.h b/fpdfsdk/include/fsdk_rendercontext.h |
index 51c37b36246372093761e297ce178d2d631a24e1..1e66104d86528c02085b3631da904d7f5db60cbe 100644 |
--- a/fpdfsdk/include/fsdk_rendercontext.h |
+++ b/fpdfsdk/include/fsdk_rendercontext.h |
@@ -1,7 +1,7 @@ |
// Copyright 2014 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 _RENDERCONTENT_H_ |
@@ -10,32 +10,30 @@ |
#include "../include/fpdf_progressive.h" |
// Everything about rendering is put here: for OOM recovery |
-class CRenderContext : public CFX_Object |
-{ |
-public: |
- CRenderContext() { Clear(); } |
- ~CRenderContext(); |
- |
- void Clear(); |
- |
- CFX_RenderDevice* m_pDevice; |
- CPDF_RenderContext* m_pContext; |
- CPDF_ProgressiveRenderer* m_pRenderer; |
- CPDF_AnnotList* m_pAnnots; |
- CPDF_RenderOptions* m_pOptions; |
+class CRenderContext : public CFX_Object { |
+ public: |
+ CRenderContext() { Clear(); } |
+ ~CRenderContext(); |
+ |
+ void Clear(); |
+ |
+ CFX_RenderDevice* m_pDevice; |
+ CPDF_RenderContext* m_pContext; |
+ CPDF_ProgressiveRenderer* m_pRenderer; |
+ CPDF_AnnotList* m_pAnnots; |
+ CPDF_RenderOptions* m_pOptions; |
#ifdef _WIN32_WCE |
- CFX_DIBitmap* m_pBitmap; |
- HBITMAP m_hBitmap; |
+ CFX_DIBitmap* m_pBitmap; |
+ HBITMAP m_hBitmap; |
#endif |
}; |
-class IFSDK_PAUSE_Adapter : public IFX_Pause |
-{ |
-public: |
- IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause ); |
- FX_BOOL NeedToPauseNow(); |
- |
-private: |
- IFSDK_PAUSE* m_IPause; |
+class IFSDK_PAUSE_Adapter : public IFX_Pause { |
+ public: |
+ IFSDK_PAUSE_Adapter(IFSDK_PAUSE* IPause); |
+ FX_BOOL NeedToPauseNow(); |
+ |
+ private: |
+ IFSDK_PAUSE* m_IPause; |
}; |
#endif |