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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 bData(FALSE), | 42 bData(FALSE), |
43 sData(""), | 43 sData(""), |
44 bPersistent(FALSE), | 44 bPersistent(FALSE), |
45 bDeleted(FALSE) {} | 45 bDeleted(FALSE) {} |
46 | 46 |
47 JSGlobalData::~JSGlobalData() { | 47 JSGlobalData::~JSGlobalData() { |
48 pData.Reset(); | 48 pData.Reset(); |
49 } | 49 } |
50 | 50 |
51 JSGlobalAlternate::JSGlobalAlternate(CJS_Object* pJSObject) | 51 JSGlobalAlternate::JSGlobalAlternate(CJS_Object* pJSObject) |
52 : CJS_EmbedObj(pJSObject), m_pEnv(nullptr) {} | 52 : CJS_EmbedObj(pJSObject), m_pFormFillEnv(nullptr) {} |
53 | 53 |
54 JSGlobalAlternate::~JSGlobalAlternate() { | 54 JSGlobalAlternate::~JSGlobalAlternate() { |
55 DestroyGlobalPersisitentVariables(); | 55 DestroyGlobalPersisitentVariables(); |
56 m_pGlobalData->Release(); | 56 m_pGlobalData->Release(); |
57 } | 57 } |
58 | 58 |
59 void JSGlobalAlternate::Initial(CPDFSDK_FormFillEnvironment* pEnv) { | 59 void JSGlobalAlternate::Initial(CPDFSDK_FormFillEnvironment* pFormFillEnv) { |
60 m_pEnv = pEnv; | 60 m_pFormFillEnv = pFormFillEnv; |
61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pEnv); | 61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pFormFillEnv); |
62 UpdateGlobalPersistentVariables(); | 62 UpdateGlobalPersistentVariables(); |
63 } | 63 } |
64 | 64 |
65 FX_BOOL JSGlobalAlternate::QueryProperty(const FX_WCHAR* propname) { | 65 FX_BOOL JSGlobalAlternate::QueryProperty(const FX_WCHAR* propname) { |
66 return CFX_WideString(propname) != L"setPersistent"; | 66 return CFX_WideString(propname) != L"setPersistent"; |
67 } | 67 } |
68 | 68 |
69 FX_BOOL JSGlobalAlternate::DelProperty(IJS_Context* cc, | 69 FX_BOOL JSGlobalAlternate::DelProperty(IJS_Context* cc, |
70 const FX_WCHAR* propname, | 70 const FX_WCHAR* propname, |
71 CFX_WideString& sError) { | 71 CFX_WideString& sError) { |
(...skipping 361 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 |