Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: fpdfsdk/include/javascript/IJavaScript.h

Issue 933043002: Kill off unused IFXJS interface methods. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: More unused code Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | fpdfsdk/include/javascript/JS_Define.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 _IJAVASCRIPT_H_ 7 #ifndef _IJAVASCRIPT_H_
8 #define _IJAVASCRIPT_H_ 8 #define _IJAVASCRIPT_H_
9 9
10 class IFXJS_Context 10 class IFXJS_Context
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 class IFXJS_Runtime 69 class IFXJS_Runtime
70 { 70 {
71 public: 71 public:
72 virtual IFXJS_Context* NewContext() = 0; 72 virtual IFXJS_Context* NewContext() = 0;
73 virtual void ReleaseContext(IFXJS_Context * p Context) = 0; 73 virtual void ReleaseContext(IFXJS_Context * p Context) = 0;
74 virtual IFXJS_Context* GetCurrentContext() = 0; 74 virtual IFXJS_Context* GetCurrentContext() = 0;
75 75
76 virtual void SetReaderDocument(CPDFSDK_Docume nt* pReaderDoc) = 0; 76 virtual void SetReaderDocument(CPDFSDK_Docume nt* pReaderDoc) = 0;
77 virtual CPDFSDK_Document* GetReaderDocument() = 0; 77 virtual CPDFSDK_Document* GetReaderDocument() = 0;
78 78
79 virtual void GetObjectNames(CFX_WideStringArr ay& array) = 0;
80 virtual void GetObjectConsts(const CFX_WideSt ring& swObjName, CFX_WideStringArray& array) = 0;
81 virtual void GetObjectProps(const CFX_WideStr ing& swObjName, CFX_WideStringArray& array) = 0;
82 virtual void GetObjectMethods(const CFX_WideS tring& swObjName, CFX_WideStringArray& array) = 0;
83
84 virtual void Exit() = 0;
85 virtual void Enter() = 0;
86 virtual FX_BOOL IsEntered() = 0;
87 virtual FX_BOOL GetHValueByName(FX_BSTR utf8Name , FXJSE_HVALUE hValue) = 0; 79 virtual FX_BOOL GetHValueByName(FX_BSTR utf8Name , FXJSE_HVALUE hValue) = 0;
88 virtual FX_BOOL SetHValueByName(FX_BSTR utf8Name , FXJSE_HVALUE hValue) = 0; 80 virtual FX_BOOL SetHValueByName(FX_BSTR utf8Name , FXJSE_HVALUE hValue) = 0;
89 81
90 protected: 82 protected:
91 ~IFXJS_Runtime() { } 83 ~IFXJS_Runtime() { }
92 }; 84 };
93 85
94 class CPDFDoc_Environment; 86 class CPDFDoc_Environment;
95 class CJS_GlobalData; 87 class CJS_GlobalData;
96 88
(...skipping 11 matching lines...) Expand all
108 void ReleaseGlobalDat a(); 100 void ReleaseGlobalDat a();
109 private: 101 private:
110 FX_BOOL m_bInit; 102 FX_BOOL m_bInit;
111 int m_nRef; 103 int m_nRef;
112 CJS_GlobalData* m_pGlobalData; 104 CJS_GlobalData* m_pGlobalData;
113 FX_INT32 m_nGlobalDataCou nt; 105 FX_INT32 m_nGlobalDataCou nt;
114 }; 106 };
115 107
116 #endif //_IJAVASCRIPT_H_ 108 #endif //_IJAVASCRIPT_H_
117 109
OLDNEW
« no previous file with comments | « no previous file | fpdfsdk/include/javascript/JS_Define.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698