summaryrefslogtreecommitdiff
path: root/fxjs/xfa/cjx_node.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-12-13 18:29:02 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-12-13 18:29:02 +0000
commit2614250d4f11ed02033a7da095a1694ece12ab78 (patch)
treecc41c5770c17ea47537856991fa44cd1e2acfeb8 /fxjs/xfa/cjx_node.h
parent14768f3264a4cff8ca0096a27e41f1861b2c422b (diff)
downloadpdfium-2614250d4f11ed02033a7da095a1694ece12ab78.tar.xz
Methods are on CJX_Object not CJX_Node now
This CL converts all of the JSNode() to JSObject() calls as all of the original CJX_Node methods have been moved to CJX_Object. This fixes potential bad casts from things like CJX_Content which do not inhert from CJX_Node. Bug: pdfium:793372 Change-Id: I6c7f63a78f3d47bb6bad74faed3fd8c535bf095e Reviewed-on: https://pdfium-review.googlesource.com/21090 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_node.h')
-rw-r--r--fxjs/xfa/cjx_node.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/fxjs/xfa/cjx_node.h b/fxjs/xfa/cjx_node.h
index 9d16d852bf..f54239aa67 100644
--- a/fxjs/xfa/cjx_node.h
+++ b/fxjs/xfa/cjx_node.h
@@ -7,18 +7,12 @@
#ifndef FXJS_XFA_CJX_NODE_H_
#define FXJS_XFA_CJX_NODE_H_
-#include <memory>
-#include <vector>
-
-#include "core/fxcrt/unowned_ptr.h"
#include "fxjs/CJX_Define.h"
#include "fxjs/xfa/cjx_object.h"
#include "fxjs/xfa/cjx_tree.h"
#include "xfa/fxfa/fxfa_basic.h"
-class CXFA_LayoutItem;
class CXFA_Node;
-class CXFA_WidgetData;
class CJX_Node : public CJX_Tree {
public:
@@ -28,12 +22,6 @@ class CJX_Node : public CJX_Tree {
CXFA_Node* GetXFANode();
const CXFA_Node* GetXFANode() const;
- void SetLayoutItem(CXFA_LayoutItem* item) { layout_item_ = item; }
- CXFA_LayoutItem* GetLayoutItem() const { return layout_item_.Get(); }
-
- void SetCalcRecursionCount(size_t count) { calc_recursion_count_ = count; }
- size_t GetCalcRecursionCount() const { return calc_recursion_count_; }
-
JS_METHOD(applyXSL, CJX_Node);
JS_METHOD(assignNode, CJX_Node);
JS_METHOD(clone, CJX_Node);
@@ -51,8 +39,6 @@ class CJX_Node : public CJX_Tree {
XFA_Element eType);
private:
- UnownedPtr<CXFA_LayoutItem> layout_item_;
- size_t calc_recursion_count_ = 0;
static const CJX_MethodSpec MethodSpecs[];
};