summaryrefslogtreecommitdiff
path: root/fpdfsdk/src
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2015-10-22 11:08:42 -0400
committerDan Sinclair <dsinclair@chromium.org>2015-10-22 11:08:42 -0400
commit162f227af9c5e28885a36e6ca06a09c12c6223e0 (patch)
tree19b57e69acfba514c75c017bdb6118573b5e9172 /fpdfsdk/src
parentc2bfc000e502c42c9a3017038fd9104c7997d126 (diff)
downloadpdfium-162f227af9c5e28885a36e6ca06a09c12c6223e0.tar.xz
Remove unused CPDFSDK_InterForm::DoFDFBuffer.
This method isn't used anywhere and the implementation doesn't really do anything. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1405163003 .
Diffstat (limited to 'fpdfsdk/src')
-rw-r--r--fpdfsdk/src/fsdk_baseform.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/fpdfsdk/src/fsdk_baseform.cpp b/fpdfsdk/src/fsdk_baseform.cpp
index 542ade022a..3b845b017e 100644
--- a/fpdfsdk/src/fsdk_baseform.cpp
+++ b/fpdfsdk/src/fsdk_baseform.cpp
@@ -2037,36 +2037,6 @@ FX_BOOL CPDFSDK_InterForm::SubmitFields(const CFX_WideString& csDestination,
return TRUE;
}
-void CPDFSDK_InterForm::DoFDFBuffer(CFX_ByteString sBuffer) {
- ASSERT(m_pDocument != NULL);
-
- if (CFDF_Document* pFDFDocument = CFDF_Document::ParseMemory(
- (const unsigned char*)sBuffer.GetBuffer(sBuffer.GetLength()),
- sBuffer.GetLength())) {
- CPDF_Dictionary* pRootDic = pFDFDocument->GetRoot();
- if (pRootDic) {
- CPDF_Dictionary* pFDFDict = pRootDic->GetDict("FDF");
- if (pFDFDict) {
- CPDF_Dictionary* pJSDict = pFDFDict->GetDict("JavaScript");
- if (pJSDict) {
- CFX_WideString csJS;
-
- CPDF_Object* pJS = pJSDict->GetElementValue("Before");
- if (pJS != NULL) {
- if (pJS->IsString())
- csJS = pJSDict->GetUnicodeText("Before");
- else if (pJS->GetType() == PDFOBJ_STREAM)
- csJS = pJS->GetUnicodeText();
- }
- }
- }
- }
- delete pFDFDocument;
- }
-
- sBuffer.ReleaseBuffer();
-}
-
FX_BOOL CPDFSDK_InterForm::FDFToURLEncodedData(CFX_WideString csFDFFile,
CFX_WideString csTxtFile) {
return TRUE;