Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: fpdfsdk/javascript/global.cpp

Issue 2391313002: Rename CPDFSDK_Environment to CPDFSDK_FormfillEnvironment (Closed)
Patch Set: Rebase to master Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_pEnv(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_Environment* pEnv) { 59 void JSGlobalAlternate::Initial(CPDFSDK_FormFillEnvironment* pEnv) {
60 m_pEnv = pEnv; 60 m_pEnv = pEnv;
61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pEnv); 61 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pEnv);
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698