| 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/cjs_runtime.h" | 7 #include "fpdfsdk/javascript/cjs_runtime.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "fpdfsdk/javascript/color.h" | 24 #include "fpdfsdk/javascript/color.h" |
| 25 #include "fpdfsdk/javascript/console.h" | 25 #include "fpdfsdk/javascript/console.h" |
| 26 #include "fpdfsdk/javascript/event.h" | 26 #include "fpdfsdk/javascript/event.h" |
| 27 #include "fpdfsdk/javascript/global.h" | 27 #include "fpdfsdk/javascript/global.h" |
| 28 #include "fpdfsdk/javascript/report.h" | 28 #include "fpdfsdk/javascript/report.h" |
| 29 #include "fpdfsdk/javascript/util.h" | 29 #include "fpdfsdk/javascript/util.h" |
| 30 #include "third_party/base/stl_util.h" | 30 #include "third_party/base/stl_util.h" |
| 31 | 31 |
| 32 #ifdef PDF_ENABLE_XFA | 32 #ifdef PDF_ENABLE_XFA |
| 33 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" | 33 #include "fpdfsdk/fpdfxfa/include/fpdfxfa_app.h" |
| 34 #include "xfa/fxjse/value.h" | 34 #include "fxjse/include/cfxjse_value.h" |
| 35 #endif // PDF_ENABLE_XFA | 35 #endif // PDF_ENABLE_XFA |
| 36 | 36 |
| 37 // static | 37 // static |
| 38 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { | 38 void IJS_Runtime::Initialize(unsigned int slot, void* isolate) { |
| 39 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate)); | 39 FXJS_Initialize(slot, reinterpret_cast<v8::Isolate*>(isolate)); |
| 40 } | 40 } |
| 41 | 41 |
| 42 // static | 42 // static |
| 43 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { | 43 IJS_Runtime* IJS_Runtime::Create(CPDFDoc_Environment* pEnv) { |
| 44 return new CJS_Runtime(pEnv); | 44 return new CJS_Runtime(pEnv); |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 #endif | 313 #endif |
| 314 void CJS_Runtime::AddObserver(Observer* observer) { | 314 void CJS_Runtime::AddObserver(Observer* observer) { |
| 315 ASSERT(!pdfium::ContainsKey(m_observers, observer)); | 315 ASSERT(!pdfium::ContainsKey(m_observers, observer)); |
| 316 m_observers.insert(observer); | 316 m_observers.insert(observer); |
| 317 } | 317 } |
| 318 | 318 |
| 319 void CJS_Runtime::RemoveObserver(Observer* observer) { | 319 void CJS_Runtime::RemoveObserver(Observer* observer) { |
| 320 ASSERT(pdfium::ContainsKey(m_observers, observer)); | 320 ASSERT(pdfium::ContainsKey(m_observers, observer)); |
| 321 m_observers.erase(observer); | 321 m_observers.erase(observer); |
| 322 } | 322 } |
| OLD | NEW |