Chromium Code Reviews| 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>; |
|
Tom Sepez
2015/11/10 17:28:04
nit: up next, remove CS_Parameters and just use st
Lei Zhang
2015/11/11 02:27:56
Acknowledged.
|
| class CJS_PropValue : public CJS_Value { |
| public: |