summaryrefslogtreecommitdiff
path: root/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp
diff options
context:
space:
mode:
authorweili <weili@chromium.org>2016-07-18 06:01:07 -0700
committerCommit bot <commit-bot@chromium.org>2016-07-18 06:01:07 -0700
commite8a80664a888526ca4f0d08b4e6b290eb0aa0d76 (patch)
tree063d663071a01f8eb58cc23e278e77039cfdab2f /fpdfsdk/fpdfxfa/fpdfxfa_app.cpp
parent8d5315004400be520bd988c1789e3b0a800fb100 (diff)
downloadpdfium-e8a80664a888526ca4f0d08b4e6b290eb0aa0d76.tar.xz
Remove foxit app related setter and getter APIs in XFA code
No need to get or set foxit app type, name, and version, thus remove all these APIs and implementation. Review-Url: https://codereview.chromium.org/2050913002
Diffstat (limited to 'fpdfsdk/fpdfxfa/fpdfxfa_app.cpp')
-rw-r--r--fpdfsdk/fpdfxfa/fpdfxfa_app.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp b/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp
index 5fe114a64c..5774a54785 100644
--- a/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp
+++ b/fpdfsdk/fpdfxfa/fpdfxfa_app.cpp
@@ -93,20 +93,10 @@ void CPDFXFA_App::GetAppName(CFX_WideString& wsName) {
}
}
-void CPDFXFA_App::GetFoxitAppName(CFX_WideString& wsFoxitName) {
- wsFoxitName = L"Foxit";
-}
-
void CPDFXFA_App::SetAppType(const CFX_WideStringC& wsAppType) {
m_csAppType = wsAppType;
}
-void CPDFXFA_App::SetFoxitAppType(const CFX_WideStringC& wsFoxitAppType) {}
-
-void CPDFXFA_App::GetFoxitAppType(CFX_WideString& wsFoxitAppType) {
- wsFoxitAppType.clear();
-}
-
void CPDFXFA_App::GetLanguage(CFX_WideString& wsLanguage) {
CPDFDoc_Environment* pEnv = m_pEnvList.GetAt(0);
if (pEnv) {
@@ -129,10 +119,6 @@ void CPDFXFA_App::GetVersion(CFX_WideString& wsVersion) {
wsVersion = JS_STR_VIEWERVERSION_XFA;
}
-void CPDFXFA_App::GetFoxitVersion(CFX_WideString& wsFoxitVersion) {
- wsFoxitVersion = L"7.0";
-}
-
void CPDFXFA_App::Beep(uint32_t dwType) {
CPDFDoc_Environment* pEnv = m_pEnvList.GetAt(0);
if (pEnv) {