summaryrefslogtreecommitdiff
path: root/fpdfsdk/src/javascript/Document.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2016-01-05 16:59:02 -0800
committerTom Sepez <tsepez@chromium.org>2016-01-05 16:59:02 -0800
commit685c3130da63bd1eea1281f29bf1ee4f22f03129 (patch)
treed193d5e46aa75a2e6ff7b28eb3d20f28ff0dc29c /fpdfsdk/src/javascript/Document.h
parent6caae4d3c6815c5a1e12340734412a3bc7548652 (diff)
downloadpdfium-685c3130da63bd1eea1281f29bf1ee4f22f03129.tar.xz
Document::DoAnnotDelay and m_DelayAnnotData member unused.
R=thestig@chromium.org Review URL: https://codereview.chromium.org/1565613002 .
Diffstat (limited to 'fpdfsdk/src/javascript/Document.h')
-rw-r--r--fpdfsdk/src/javascript/Document.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/fpdfsdk/src/javascript/Document.h b/fpdfsdk/src/javascript/Document.h
index 350ab05682..94860fc425 100644
--- a/fpdfsdk/src/javascript/Document.h
+++ b/fpdfsdk/src/javascript/Document.h
@@ -267,8 +267,6 @@ class Document : public CJS_EmbedObj {
CFX_ByteString& strFolderName);
void AddDelayData(CJS_DelayData* pData);
void DoFieldDelay(const CFX_WideString& sFieldName, int nControlIndex);
- void AddDelayAnnotData(CJS_AnnotObj* pData);
- void DoAnnotDelay();
void SetIsolate(v8::Isolate* isolate) { m_isolate = isolate; }
CJS_Document* GetCJSDoc() const;
@@ -285,7 +283,6 @@ class Document : public CJS_EmbedObj {
CFX_WideString m_cwBaseURL;
bool m_bDelay;
CFX_ArrayTemplate<CJS_DelayData*> m_DelayData;
- CFX_ArrayTemplate<CJS_AnnotObj*> m_DelayAnnotData;
};
class CJS_Document : public CJS_Object {