| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "fpdfsdk/javascript/PublicMethods.h" | 7 #include "fpdfsdk/javascript/PublicMethods.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "core/fpdfdoc/include/cpdf_interform.h" |
| 12 #include "core/fxcrt/include/fx_ext.h" | 13 #include "core/fxcrt/include/fx_ext.h" |
| 13 #include "fpdfsdk/include/fsdk_mgr.h" | 14 #include "fpdfsdk/include/fsdk_mgr.h" |
| 14 #include "fpdfsdk/javascript/Field.h" | 15 #include "fpdfsdk/javascript/Field.h" |
| 15 #include "fpdfsdk/javascript/JS_Define.h" | 16 #include "fpdfsdk/javascript/JS_Define.h" |
| 16 #include "fpdfsdk/javascript/JS_EventHandler.h" | 17 #include "fpdfsdk/javascript/JS_EventHandler.h" |
| 17 #include "fpdfsdk/javascript/JS_Object.h" | 18 #include "fpdfsdk/javascript/JS_Object.h" |
| 18 #include "fpdfsdk/javascript/JS_Value.h" | 19 #include "fpdfsdk/javascript/JS_Value.h" |
| 19 #include "fpdfsdk/javascript/cjs_context.h" | 20 #include "fpdfsdk/javascript/cjs_context.h" |
| 20 #include "fpdfsdk/javascript/cjs_runtime.h" | 21 #include "fpdfsdk/javascript/cjs_runtime.h" |
| 21 #include "fpdfsdk/javascript/color.h" | 22 #include "fpdfsdk/javascript/color.h" |
| (...skipping 1787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1809 nums.SetElement(nIndex, CJS_Value(pRuntime, sPart.c_str())); | 1810 nums.SetElement(nIndex, CJS_Value(pRuntime, sPart.c_str())); |
| 1810 } | 1811 } |
| 1811 | 1812 |
| 1812 if (nums.GetLength() > 0) | 1813 if (nums.GetLength() > 0) |
| 1813 vRet = nums; | 1814 vRet = nums; |
| 1814 else | 1815 else |
| 1815 vRet.SetNull(); | 1816 vRet.SetNull(); |
| 1816 | 1817 |
| 1817 return TRUE; | 1818 return TRUE; |
| 1818 } | 1819 } |
| OLD | NEW |