From 4cc32e30aaacc2e527acd052fa038158f4294636 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 7 Jun 2018 19:32:52 +0000 Subject: Remove friending in CFXJSE_Context. Change-Id: I6a634cb3fb9acdd78ae29017987e5e41865a0d4b Reviewed-on: https://pdfium-review.googlesource.com/34490 Commit-Queue: Tom Sepez Commit-Queue: dsinclair Reviewed-by: dsinclair --- fxjs/cfxjse_context.cpp | 11 +++-------- fxjs/cfxjse_context.h | 2 -- 2 files changed, 3 insertions(+), 10 deletions(-) (limited to 'fxjs') diff --git a/fxjs/cfxjse_context.cpp b/fxjs/cfxjse_context.cpp index 59cb4af9a7..e9297e5bb2 100644 --- a/fxjs/cfxjse_context.cpp +++ b/fxjs/cfxjse_context.cpp @@ -90,17 +90,10 @@ v8::Local GetGlobalObjectFromContext( return hContext->Global()->GetPrototype().As(); } -} // namespace - -// Note, not in the anonymous namespace due to the friend call -// in cfxjse_context.h -// TODO(dsinclair): Remove the friending, use public methods. class CFXJSE_ScopeUtil_IsolateHandleContext { public: explicit CFXJSE_ScopeUtil_IsolateHandleContext(CFXJSE_Context* pContext) - : m_parent(pContext->m_pIsolate), - m_cscope(v8::Local::New(pContext->m_pIsolate, - pContext->m_hContext)) {} + : m_parent(pContext->GetIsolate()), m_cscope(pContext->GetContext()) {} private: CFXJSE_ScopeUtil_IsolateHandleContext( @@ -113,6 +106,8 @@ class CFXJSE_ScopeUtil_IsolateHandleContext { v8::Context::Scope m_cscope; }; +} // namespace + void FXJSE_UpdateObjectBinding(v8::Local& hObject, CFXJSE_HostObject* lpNewBinding) { ASSERT(!hObject.IsEmpty()); diff --git a/fxjs/cfxjse_context.h b/fxjs/cfxjse_context.h index 8ab955197c..b4db8f7a30 100644 --- a/fxjs/cfxjse_context.h +++ b/fxjs/cfxjse_context.h @@ -39,8 +39,6 @@ class CFXJSE_Context { CFXJSE_Value* lpNewThisObject = nullptr); protected: - friend class CFXJSE_ScopeUtil_IsolateHandleContext; - CFXJSE_Context(const CFXJSE_Context&) = delete; CFXJSE_Context& operator=(const CFXJSE_Context&) = delete; -- cgit v1.2.3