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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 } | 49 } |
50 | 50 |
51 JSGlobalAlternate::JSGlobalAlternate(CJS_Object* pJSObject) | 51 JSGlobalAlternate::JSGlobalAlternate(CJS_Object* pJSObject) |
52 : CJS_EmbedObj(pJSObject), m_pApp(nullptr) {} | 52 : CJS_EmbedObj(pJSObject), m_pApp(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(CPDFDoc_Environment* pApp) { | 59 void JSGlobalAlternate::Initial(CPDFSDK_Environment* pApp) { |
60 m_pApp = pApp; | 60 m_pApp = pApp; |
61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pApp); | 61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pApp); |
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, |
(...skipping 363 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 |