blob: a20ca8f44d4fe2ed53ced1ff01a31208367d3e47 [file] [log] [blame]
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07001// Copyright 2014 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Lei Zhanga6d9f0e2015-06-13 00:48:38 -07004
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -07005// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
Tom Sepez37458412015-10-06 11:33:46 -07007#include "JS_Runtime.h"
8
Tom Sepez37458412015-10-06 11:33:46 -07009#include "Consts.h"
10#include "Document.h"
11#include "Field.h"
12#include "Icon.h"
13#include "JS_Context.h"
14#include "JS_Define.h"
15#include "JS_EventHandler.h"
16#include "JS_GlobalData.h"
17#include "JS_Object.h"
18#include "JS_Value.h"
19#include "PublicMethods.h"
20#include "app.h"
21#include "color.h"
22#include "console.h"
23#include "event.h"
Lei Zhangbde53d22015-11-12 22:21:30 -080024#include "fpdfsdk/include/fsdk_mgr.h" // For CPDFDoc_Environment.
25#include "fpdfsdk/include/javascript/IJavaScript.h"
Tom Sepez37458412015-10-06 11:33:46 -070026#include "global.h"
27#include "report.h"
28#include "util.h"
Lei Zhangcd2bb302015-12-22 13:49:44 -080029#include "third_party/base/stl_util.h"
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -070030
Tom Sepez40e9ff32015-11-30 12:39:54 -080031#ifdef PDF_ENABLE_XFA
32#include "../../../xfa/src/fxjse/src/value.h"
33#include "../../include/fpdfxfa/fpdfxfa_app.h"
34#endif // PDF_ENABLE_XFA
35
Tom Sepez67fd5df2015-10-08 12:24:19 -070036// static
Tom Sepez452b4f32015-10-13 09:27:27 -070037void IJS_Runtime::Initialize(unsigned int slot, void* isolate) {
38 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate));
39}
40
41// static
Tom Sepezba038bc2015-10-08 12:03:00 -070042IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) {
Tom Sepez37458412015-10-06 11:33:46 -070043 return new CJS_Runtime(pEnv);
44}
45
Tom Sepez67fd5df2015-10-08 12:24:19 -070046// static
47CJS_Runtime* CJS_Runtime::FromContext(const IJS_Context* cc) {
48 const CJS_Context* pContext = static_cast<const CJS_Context*>(cc);
49 return pContext->GetJSRuntime();
50}
51
Nico Weber9d8ec5a2015-08-04 13:00:21 -070052CJS_Runtime::CJS_Runtime(CPDFDoc_Environment* pApp)
53 : m_pApp(pApp),
54 m_pDocument(NULL),
55 m_bBlocking(FALSE),
Jochen Eisinger29007842015-08-05 09:02:13 +020056 m_isolate(NULL),
57 m_isolateManaged(false) {
Tom Sepez51da0932015-11-25 16:05:49 -080058#ifndef PDF_ENABLE_XFA
59 IPDF_JSPLATFORM* pPlatform = m_pApp->GetFormFillInfo()->m_pJsPlatform;
60 if (pPlatform->version <= 2) {
61 unsigned int embedderDataSlot = 0;
62 v8::Isolate* pExternalIsolate = nullptr;
63 if (pPlatform->version == 2) {
64 pExternalIsolate = reinterpret_cast<v8::Isolate*>(pPlatform->m_isolate);
65 embedderDataSlot = pPlatform->m_v8EmbedderSlot;
66#else
Nico Weber9d8ec5a2015-08-04 13:00:21 -070067 if (CPDFXFA_App::GetInstance()->GetJSERuntime()) {
68 // TODO(tsepez): CPDFXFA_App should also use the embedder provided isolate.
69 m_isolate = (v8::Isolate*)CPDFXFA_App::GetInstance()->GetJSERuntime();
Tom Sepeza72e8e22015-10-07 10:17:53 -070070 } else {
71 IPDF_JSPLATFORM* pPlatform = m_pApp->GetFormFillInfo()->m_pJsPlatform;
72 if (pPlatform->version <= 2) {
73 unsigned int embedderDataSlot = 0;
74 v8::Isolate* pExternalIsolate = nullptr;
75 if (pPlatform->version == 2) {
76 pExternalIsolate = reinterpret_cast<v8::Isolate*>(pPlatform->m_isolate);
77 embedderDataSlot = pPlatform->m_v8EmbedderSlot;
78 }
79 FXJS_Initialize(embedderDataSlot, pExternalIsolate);
Tom Sepez51da0932015-11-25 16:05:49 -080080#endif
Tom Sepeza72e8e22015-10-07 10:17:53 -070081 }
Tom Sepez51da0932015-11-25 16:05:49 -080082#ifndef PDF_ENABLE_XFA
83 FXJS_Initialize(embedderDataSlot, pExternalIsolate);
84#else
Tom Sepeza72e8e22015-10-07 10:17:53 -070085 m_isolateManaged = FXJS_GetIsolate(&m_isolate);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070086 }
Tom Sepezd2cc1b92015-04-30 15:19:03 -070087
Nico Weber9d8ec5a2015-08-04 13:00:21 -070088 v8::Isolate* isolate = m_isolate;
89 v8::Isolate::Scope isolate_scope(isolate);
90 v8::Locker locker(isolate);
91 v8::HandleScope handle_scope(isolate);
Tom Sepezed7b2b52015-09-22 08:36:17 -070092 if (CPDFXFA_App::GetInstance()->IsJavaScriptInitialized()) {
Nico Weber9d8ec5a2015-08-04 13:00:21 -070093 CJS_Context* pContext = (CJS_Context*)NewContext();
Tom Sepez4237aed2015-11-10 15:19:17 -080094 FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects);
Tom Sepez2f2ffec2015-07-23 14:42:09 -070095 ReleaseContext(pContext);
Nico Weber9d8ec5a2015-08-04 13:00:21 -070096 return;
Tom Sepez51da0932015-11-25 16:05:49 -080097#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -070098 }
Tom Sepez51da0932015-11-25 16:05:49 -080099#ifndef PDF_ENABLE_XFA
100 m_isolateManaged = FXJS_GetIsolate(&m_isolate);
101#else
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700102
Tom Sepez51da0932015-11-25 16:05:49 -0800103#endif
Lei Zhang3fa115b2015-10-08 12:04:47 -0700104 if (m_isolateManaged || FXJS_GlobalIsolateRefCount() == 0)
105 DefineJSObjects();
106
Tom Sepez51da0932015-11-25 16:05:49 -0800107#ifdef PDF_ENABLE_XFA
Tom Sepezed7b2b52015-09-22 08:36:17 -0700108 CPDFXFA_App::GetInstance()->SetJavaScriptInitialized(TRUE);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700109
Tom Sepez51da0932015-11-25 16:05:49 -0800110#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700111 CJS_Context* pContext = (CJS_Context*)NewContext();
Tom Sepez4237aed2015-11-10 15:19:17 -0800112 FXJS_InitializeRuntime(GetIsolate(), this, &m_context, &m_StaticObjects);
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700113 ReleaseContext(pContext);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700114}
115
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700116CJS_Runtime::~CJS_Runtime() {
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700117 for (auto* obs : m_observers)
118 obs->OnDestroyed();
119
Tom Sepez50d12ad2015-11-24 09:50:51 -0800120 for (int i = 0, sz = m_ContextArray.GetSize(); i < sz; i++)
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700121 delete m_ContextArray.GetAt(i);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700122
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700123 m_ContextArray.RemoveAll();
Tom Sepez51da0932015-11-25 16:05:49 -0800124#ifndef PDF_ENABLE_XFA
125 FXJS_ReleaseRuntime(GetIsolate(), &m_context, &m_StaticObjects);
126#endif
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700127
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700128 m_pApp = NULL;
129 m_pDocument = NULL;
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700130 m_context.Reset();
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700131
Jochen Eisinger29007842015-08-05 09:02:13 +0200132 if (m_isolateManaged)
133 m_isolate->Dispose();
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700134}
135
Tom Sepez142165e2015-09-11 13:21:50 -0700136void CJS_Runtime::DefineJSObjects() {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700137 v8::Isolate::Scope isolate_scope(GetIsolate());
Tom Sepez51da0932015-11-25 16:05:49 -0800138#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700139 v8::Locker locker(GetIsolate());
Tom Sepez51da0932015-11-25 16:05:49 -0800140#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700141 v8::HandleScope handle_scope(GetIsolate());
142 v8::Local<v8::Context> context = v8::Context::New(GetIsolate());
143 v8::Context::Scope context_scope(context);
Tom Sepez570875c2015-09-11 08:35:03 -0700144
145 // The call order determines the "ObjDefID" assigned to each class.
146 // ObjDefIDs 0 - 2
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700147 CJS_Border::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
148 CJS_Display::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
149 CJS_Font::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700150
Tom Sepez570875c2015-09-11 08:35:03 -0700151 // ObjDefIDs 3 - 5
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700152 CJS_Highlight::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
153 CJS_Position::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
154 CJS_ScaleHow::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700155
Tom Sepez570875c2015-09-11 08:35:03 -0700156 // ObjDefIDs 6 - 8
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700157 CJS_ScaleWhen::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
158 CJS_Style::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
159 CJS_Zoomtype::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700160
Tom Sepez570875c2015-09-11 08:35:03 -0700161 // ObjDefIDs 9 - 11
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700162 CJS_App::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
163 CJS_Color::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
164 CJS_Console::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700165
Tom Sepez570875c2015-09-11 08:35:03 -0700166 // ObjDefIDs 12 - 14
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700167 CJS_Document::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_GLOBAL);
168 CJS_Event::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
169 CJS_Field::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700170
Tom Sepez570875c2015-09-11 08:35:03 -0700171 // ObjDefIDs 15 - 17
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700172 CJS_Global::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
173 CJS_Icon::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
174 CJS_Util::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_STATIC);
Tom Sepez570875c2015-09-11 08:35:03 -0700175
Tom Sepez142165e2015-09-11 13:21:50 -0700176 // ObjDefIDs 18 - 20 (these can't fail, return void).
177 CJS_PublicMethods::DefineJSObjects(GetIsolate());
Tom Sepez67fd5df2015-10-08 12:24:19 -0700178 CJS_GlobalConsts::DefineJSObjects(this);
179 CJS_GlobalArrays::DefineJSObjects(this);
Tom Sepez570875c2015-09-11 08:35:03 -0700180
Tom Sepez142165e2015-09-11 13:21:50 -0700181 // ObjDefIDs 21 - 22.
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700182 CJS_TimerObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
183 CJS_PrintParamsObj::DefineJSObjects(GetIsolate(), FXJSOBJTYPE_DYNAMIC);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700184}
185
Tom Sepezba038bc2015-10-08 12:03:00 -0700186IJS_Context* CJS_Runtime::NewContext() {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700187 CJS_Context* p = new CJS_Context(this);
188 m_ContextArray.Add(p);
189 return p;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700190}
191
Tom Sepezba038bc2015-10-08 12:03:00 -0700192void CJS_Runtime::ReleaseContext(IJS_Context* pContext) {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700193 CJS_Context* pJSContext = (CJS_Context*)pContext;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700194
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700195 for (int i = 0, sz = m_ContextArray.GetSize(); i < sz; i++) {
196 if (pJSContext == m_ContextArray.GetAt(i)) {
197 delete pJSContext;
198 m_ContextArray.RemoveAt(i);
199 break;
200 }
201 }
202}
203
Tom Sepezba038bc2015-10-08 12:03:00 -0700204IJS_Context* CJS_Runtime::GetCurrentContext() {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700205 if (!m_ContextArray.GetSize())
206 return NULL;
207 return m_ContextArray.GetAt(m_ContextArray.GetSize() - 1);
208}
209
210void CJS_Runtime::SetReaderDocument(CPDFSDK_Document* pReaderDoc) {
211 if (m_pDocument != pReaderDoc) {
212 v8::Isolate::Scope isolate_scope(m_isolate);
Tom Sepez51da0932015-11-25 16:05:49 -0800213#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700214 v8::Locker locker(m_isolate);
Tom Sepez51da0932015-11-25 16:05:49 -0800215#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700216 v8::HandleScope handle_scope(m_isolate);
217 v8::Local<v8::Context> context =
218 v8::Local<v8::Context>::New(m_isolate, m_context);
219 v8::Context::Scope context_scope(context);
220
221 m_pDocument = pReaderDoc;
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700222 if (pReaderDoc) {
Tom Sepez39bfe122015-09-17 15:25:23 -0700223 v8::Local<v8::Object> pThis = FXJS_GetThisObj(GetIsolate());
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700224 if (!pThis.IsEmpty()) {
Tom Sepezcd56a7d2015-10-06 11:45:28 -0700225 if (FXJS_GetObjDefnID(pThis) == CJS_Document::g_nObjDefnID) {
Tom Sepez39bfe122015-09-17 15:25:23 -0700226 if (CJS_Document* pJSDocument =
Tom Sepezd5a0e952015-09-17 15:40:06 -0700227 (CJS_Document*)FXJS_GetPrivate(GetIsolate(), pThis)) {
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700228 if (Document* pDocument = (Document*)pJSDocument->GetEmbedObject())
229 pDocument->AttachDoc(pReaderDoc);
230 }
Tom Sepez2f2ffec2015-07-23 14:42:09 -0700231 }
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700232 }
Tom Sepez2f2ffec2015-07-23 14:42:09 -0700233 }
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700234 }
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700235}
236
Tom Sepez33420902015-10-13 15:00:10 -0700237int CJS_Runtime::Execute(IJS_Context* cc,
238 const wchar_t* script,
239 CFX_WideString* info) {
240 FXJSErr error = {};
241 int nRet = FXJS_Execute(m_isolate, cc, script, &error);
242 if (nRet < 0) {
243 info->Format(L"[ Line: %05d { %s } ] : %s", error.linnum - 1, error.srcline,
244 error.message);
245 }
246 return nRet;
247}
248
Tom Sepez5d0e8432015-09-22 15:50:03 -0700249bool CJS_Runtime::AddEventToSet(const FieldEvent& event) {
250 return m_FieldEventSet.insert(event).second;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700251}
252
Tom Sepez5d0e8432015-09-22 15:50:03 -0700253void CJS_Runtime::RemoveEventFromSet(const FieldEvent& event) {
254 m_FieldEventSet.erase(event);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700255}
256
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700257v8::Local<v8::Context> CJS_Runtime::NewJSContext() {
258 return v8::Local<v8::Context>::New(m_isolate, m_context);
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700259}
260
Tom Sepez51da0932015-11-25 16:05:49 -0800261#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700262CFX_WideString ChangeObjName(const CFX_WideString& str) {
263 CFX_WideString sRet = str;
264 sRet.Replace(L"_", L".");
265 return sRet;
John Abd-El-Malek3f3b45c2014-05-23 17:28:10 -0700266}
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700267FX_BOOL CJS_Runtime::GetHValueByName(const CFX_ByteStringC& utf8Name,
268 FXJSE_HVALUE hValue) {
Tom Sepeza8a39e22015-10-12 15:47:07 -0700269#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700270 const FX_CHAR* name = utf8Name.GetCStr();
Bo Xufdc00a72014-10-28 23:03:33 -0700271
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700272 v8::Locker lock(GetIsolate());
273 v8::Isolate::Scope isolate_scope(GetIsolate());
274 v8::HandleScope handle_scope(GetIsolate());
Tom Sepez4f4603c2015-11-10 15:03:12 -0800275 v8::Local<v8::Context> old_context = GetIsolate()->GetCurrentContext();
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700276 v8::Local<v8::Context> context =
277 v8::Local<v8::Context>::New(GetIsolate(), m_context);
278 v8::Context::Scope context_scope(context);
Bo Xufdc00a72014-10-28 23:03:33 -0700279
Tom Sepez4f4603c2015-11-10 15:03:12 -0800280 // Caution: We're about to hand to XFA an object that in order to invoke
281 // methods will require that the current v8::Context always has a pointer
282 // to a CJS_Runtime in its embedder data slot. Unfortunately, XFA creates
283 // its own v8::Context which has not initialized the embedder data slot.
284 // Do so now.
285 // TODO(tsepez): redesign PDF-side objects to not rely on v8::Context's
286 // embedder data slots, and/or to always use the right context.
287 FXJS_SetRuntimeForV8Context(old_context, this);
288
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700289 v8::Local<v8::Value> propvalue =
290 context->Global()->Get(v8::String::NewFromUtf8(
291 GetIsolate(), name, v8::String::kNormalString, utf8Name.GetLength()));
Bo Xufdc00a72014-10-28 23:03:33 -0700292
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700293 if (propvalue.IsEmpty()) {
294 FXJSE_Value_SetUndefined(hValue);
295 return FALSE;
296 }
297 ((CFXJSE_Value*)hValue)->ForceSetValue(propvalue);
Tom Sepeza8a39e22015-10-12 15:47:07 -0700298#endif
Lei Zhanga6d9f0e2015-06-13 00:48:38 -0700299
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700300 return TRUE;
Bo Xufdc00a72014-10-28 23:03:33 -0700301}
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700302FX_BOOL CJS_Runtime::SetHValueByName(const CFX_ByteStringC& utf8Name,
303 FXJSE_HVALUE hValue) {
Tom Sepeza8a39e22015-10-12 15:47:07 -0700304#ifdef PDF_ENABLE_XFA
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700305 if (utf8Name.IsEmpty() || hValue == NULL)
306 return FALSE;
307 const FX_CHAR* name = utf8Name.GetCStr();
308 v8::Isolate* pIsolate = GetIsolate();
309 v8::Locker lock(pIsolate);
310 v8::Isolate::Scope isolate_scope(pIsolate);
311 v8::HandleScope handle_scope(pIsolate);
312 v8::Local<v8::Context> context =
313 v8::Local<v8::Context>::New(pIsolate, m_context);
314 v8::Context::Scope context_scope(context);
Bo Xufdc00a72014-10-28 23:03:33 -0700315
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700316 // v8::Local<v8::Context> tmpCotext =
317 // v8::Local<v8::Context>::New(GetIsolate(), m_context);
318 v8::Local<v8::Value> propvalue = v8::Local<v8::Value>::New(
319 GetIsolate(), ((CFXJSE_Value*)hValue)->DirectGetValue());
320 context->Global()->Set(
321 v8::String::NewFromUtf8(pIsolate, name, v8::String::kNormalString,
322 utf8Name.GetLength()),
323 propvalue);
Tom Sepeza8a39e22015-10-12 15:47:07 -0700324#endif
Nico Weber9d8ec5a2015-08-04 13:00:21 -0700325 return TRUE;
Bo Xufdc00a72014-10-28 23:03:33 -0700326}
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700327
Tom Sepez51da0932015-11-25 16:05:49 -0800328#endif
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700329void CJS_Runtime::AddObserver(Observer* observer) {
Lei Zhangcd2bb302015-12-22 13:49:44 -0800330 ASSERT(!pdfium::ContainsKey(m_observers, observer));
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700331 m_observers.insert(observer);
332}
333
334void CJS_Runtime::RemoveObserver(Observer* observer) {
Lei Zhangcd2bb302015-12-22 13:49:44 -0800335 ASSERT(pdfium::ContainsKey(m_observers, observer));
Lei Zhang2d5a0e12015-10-05 17:00:03 -0700336 m_observers.erase(observer);
337}