summaryrefslogtreecommitdiff
path: root/fpdfsdk/src/javascript/JS_Value.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-11-11 10:10:44 -0800
committerLei Zhang <thestig@chromium.org>2015-11-11 10:10:44 -0800
commit56e3da27d8bed8a6c03274b7b946e3f6d6ac11f4 (patch)
tree21384233f9cf6b2de3a094e8b42ac8ffab9bb02a /fpdfsdk/src/javascript/JS_Value.h
parent211cab5b58151f09fbeafe2b18da77b63664c39d (diff)
downloadpdfium-56e3da27d8bed8a6c03274b7b946e3f6d6ac11f4.tar.xz
Cleanup CPDF_ApSettings and CJS_Parameters.
R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1432863004 .
Diffstat (limited to 'fpdfsdk/src/javascript/JS_Value.h')
-rw-r--r--fpdfsdk/src/javascript/JS_Value.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/fpdfsdk/src/javascript/JS_Value.h b/fpdfsdk/src/javascript/JS_Value.h
index b8c5563f70..68e643e055 100644
--- a/fpdfsdk/src/javascript/JS_Value.h
+++ b/fpdfsdk/src/javascript/JS_Value.h
@@ -88,13 +88,7 @@ class CJS_Value {
CJS_Runtime* m_pJSRuntime;
};
-class CJS_Parameters : public CFX_ArrayTemplate<CJS_Value> {
- public:
- void push_back(const CJS_Value& newElement) {
- CFX_ArrayTemplate<CJS_Value>::Add(newElement);
- }
- int size() const { return CFX_ArrayTemplate<CJS_Value>::GetSize(); }
-};
+using CJS_Parameters = std::vector<CJS_Value>;
class CJS_PropValue : public CJS_Value {
public: