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 "global.h" | 7 #include "global.h" |
8 | 8 |
9 #include "../../../core/include/fxcrt/fx_ext.h" | 9 #include "../../../core/include/fxcrt/fx_ext.h" |
10 #include "../../include/fpdfxfa/fpdfxfa_app.h" | |
11 #include "../../include/javascript/IJavaScript.h" | 10 #include "../../include/javascript/IJavaScript.h" |
12 #include "JS_Context.h" | 11 #include "JS_Context.h" |
13 #include "JS_Define.h" | 12 #include "JS_Define.h" |
14 #include "JS_EventHandler.h" | 13 #include "JS_EventHandler.h" |
15 #include "JS_GlobalData.h" | 14 #include "JS_GlobalData.h" |
16 #include "JS_Object.h" | 15 #include "JS_Object.h" |
17 #include "JS_Value.h" | 16 #include "JS_Value.h" |
18 #include "resource.h" | 17 #include "resource.h" |
19 | 18 |
20 /* ---------------------------- global ---------------------------- */ | 19 /* ---------------------------- global ---------------------------- */ |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 return CJS_Value::VT_boolean; | 519 return CJS_Value::VT_boolean; |
521 if (nHash == JSCONST_nDateHash) | 520 if (nHash == JSCONST_nDateHash) |
522 return CJS_Value::VT_date; | 521 return CJS_Value::VT_date; |
523 if (nHash == JSCONST_nObjectHash) | 522 if (nHash == JSCONST_nObjectHash) |
524 return CJS_Value::VT_object; | 523 return CJS_Value::VT_object; |
525 if (nHash == JSCONST_nFXobjHash) | 524 if (nHash == JSCONST_nFXobjHash) |
526 return CJS_Value::VT_fxobject; | 525 return CJS_Value::VT_fxobject; |
527 | 526 |
528 return CJS_Value::VT_unknown; | 527 return CJS_Value::VT_unknown; |
529 } | 528 } |
OLD | NEW |