| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef _FPDFXFA_APP_H_ | 7 #ifndef _FPDFXFA_APP_H_ |
| 8 #define _FPDFXFA_APP_H_ | 8 #define _FPDFXFA_APP_H_ |
| 9 | 9 |
| 10 class CPDFXFA_App; | 10 class CPDFXFA_App; |
| 11 class IFXJS_Runtime; | 11 class IFXJS_Runtime; |
| 12 class CJS_RuntimeFactory; | 12 class CJS_RuntimeFactory; |
| 13 | 13 |
| 14 class CPDFXFA_App : public IXFA_AppProvider, public CFX_Object | 14 class CPDFXFA_App : public IXFA_AppProvider |
| 15 { | 15 { |
| 16 public: | 16 public: |
| 17 CPDFXFA_App(); | 17 CPDFXFA_App(); |
| 18 ~CPDFXFA_App(); | 18 ~CPDFXFA_App(); |
| 19 | 19 |
| 20 FX_BOOL Initialize(); | 20 FX_BOOL Initialize(); |
| 21 | 21 |
| 22 IXFA_App* GetXFAApp() { return m_pXFAApp; } | 22 IXFA_App* GetXFAApp() { return m_pXFAApp; } |
| 23 | 23 |
| 24 | 24 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 CJS_RuntimeFactory* m_pJSRuntimeFactory; | 131 CJS_RuntimeFactory* m_pJSRuntimeFactory; |
| 132 | 132 |
| 133 CFX_WideString m_csAppType; | 133 CFX_WideString m_csAppType; |
| 134 FX_BOOL m_bInitRuntime; | 134 FX_BOOL m_bInitRuntime; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 CPDFXFA_App* FPDFXFA_GetApp(); | 137 CPDFXFA_App* FPDFXFA_GetApp(); |
| 138 void FPDFXFA_ReleaseApp(); | 138 void FPDFXFA_ReleaseApp(); |
| 139 | 139 |
| 140 #endif | 140 #endif |
| OLD | NEW |