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/global.h" | 7 #include "fpdfsdk/javascript/global.h" |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 BEGIN_JS_STATIC_METHOD(CJS_Global) | 26 BEGIN_JS_STATIC_METHOD(CJS_Global) |
27 JS_STATIC_METHOD_ENTRY(setPersistent) | 27 JS_STATIC_METHOD_ENTRY(setPersistent) |
28 END_JS_STATIC_METHOD() | 28 END_JS_STATIC_METHOD() |
29 | 29 |
30 IMPLEMENT_SPECIAL_JS_CLASS(CJS_Global, JSGlobalAlternate, global); | 30 IMPLEMENT_SPECIAL_JS_CLASS(CJS_Global, JSGlobalAlternate, global); |
31 | 31 |
32 void CJS_Global::InitInstance(IJS_Runtime* pIRuntime) { | 32 void CJS_Global::InitInstance(IJS_Runtime* pIRuntime) { |
33 CJS_Runtime* pRuntime = static_cast<CJS_Runtime*>(pIRuntime); | 33 CJS_Runtime* pRuntime = static_cast<CJS_Runtime*>(pIRuntime); |
34 JSGlobalAlternate* pGlobal = | 34 JSGlobalAlternate* pGlobal = |
35 static_cast<JSGlobalAlternate*>(GetEmbedObject()); | 35 static_cast<JSGlobalAlternate*>(GetEmbedObject()); |
36 pGlobal->Initial(pRuntime->GetReaderEnv()); | 36 pGlobal->Initial(pRuntime->GetFormFillEnv()); |
37 } | 37 } |
38 | 38 |
39 JSGlobalData::JSGlobalData() | 39 JSGlobalData::JSGlobalData() |
40 : nType(JS_GlobalDataType::NUMBER), | 40 : nType(JS_GlobalDataType::NUMBER), |
41 dData(0), | 41 dData(0), |
42 bData(FALSE), | 42 bData(FALSE), |
43 sData(""), | 43 sData(""), |
44 bPersistent(FALSE), | 44 bPersistent(FALSE), |
45 bDeleted(FALSE) {} | 45 bDeleted(FALSE) {} |
46 | 46 |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 pNewData->nType = JS_GlobalDataType::NULLOBJ; | 433 pNewData->nType = JS_GlobalDataType::NULLOBJ; |
434 pNewData->bPersistent = bDefaultPersistent; | 434 pNewData->bPersistent = bDefaultPersistent; |
435 } break; | 435 } break; |
436 default: | 436 default: |
437 return FALSE; | 437 return FALSE; |
438 } | 438 } |
439 | 439 |
440 m_mapGlobal[propname] = pNewData; | 440 m_mapGlobal[propname] = pNewData; |
441 return TRUE; | 441 return TRUE; |
442 } | 442 } |
OLD | NEW |