Index: fpdfsdk/src/javascript/JS_Value.h |
diff --git a/fpdfsdk/src/javascript/JS_Value.h b/fpdfsdk/src/javascript/JS_Value.h |
index b8c5563f708b115aeba8931e327c007e2c9eae8b..68e643e055f2c612beb87afd42221dc4fe675ef0 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: |