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

Unified Diff: fpdfsdk/src/javascript/Document.cpp

Issue 1562653002: Merge to XFA: Document::DoAnnotDelay and m_DelayAnnotData member unused. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/src/javascript/Document.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/src/javascript/Document.cpp
diff --git a/fpdfsdk/src/javascript/Document.cpp b/fpdfsdk/src/javascript/Document.cpp
index 0a85cece894a13ad509070dac1e53d0e9fce568a..9a434a5db720324aa36708cdf15a685f72c3455f 100644
--- a/fpdfsdk/src/javascript/Document.cpp
+++ b/fpdfsdk/src/javascript/Document.cpp
@@ -159,7 +159,6 @@ Document::~Document() {
}
m_DelayData.RemoveAll();
- m_DelayAnnotData.RemoveAll();
}
// the total number of fileds in document.
@@ -1700,18 +1699,6 @@ void Document::DoFieldDelay(const CFX_WideString& sFieldName,
}
}
-void Document::AddDelayAnnotData(CJS_AnnotObj* pData) {
- m_DelayAnnotData.Add(pData);
-}
-
-void Document::DoAnnotDelay() {
- CFX_DWordArray DelArray;
-
- for (int j = DelArray.GetSize() - 1; j >= 0; j--) {
- m_DelayData.RemoveAt(DelArray[j]);
- }
-}
-
CJS_Document* Document::GetCJSDoc() const {
return static_cast<CJS_Document*>(m_pJSObject);
}
« no previous file with comments | « fpdfsdk/src/javascript/Document.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698