From 41f0590a9d7d627783a1b11c86808959928fc1a6 Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Tue, 20 May 2014 09:52:29 -0700 Subject: Remove "using namespace v8" in header. This allows us to turn all warnings into errors. It also makes it clearer to find usage of v8 in the library. --- fpdfsdk/src/javascript/JS_Runtime.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fpdfsdk/src/javascript/JS_Runtime.cpp') diff --git a/fpdfsdk/src/javascript/JS_Runtime.cpp b/fpdfsdk/src/javascript/JS_Runtime.cpp index dc95d530f9..e707269da2 100644 --- a/fpdfsdk/src/javascript/JS_Runtime.cpp +++ b/fpdfsdk/src/javascript/JS_Runtime.cpp @@ -134,7 +134,7 @@ CJS_Runtime::~CJS_Runtime() FX_BOOL CJS_Runtime::InitJSObjects() { v8::Isolate::Scope isolate_scope(GetIsolate()); - HandleScope handle_scope(GetIsolate()); + v8::HandleScope handle_scope(GetIsolate()); v8::Handle context = v8::Context::New(GetIsolate()); v8::Context::Scope context_scope(context); //0 - 8 @@ -207,7 +207,7 @@ void CJS_Runtime::SetReaderDocument(CPDFSDK_Document* pReaderDoc) if (m_pDocument != pReaderDoc) { v8::Isolate::Scope isolate_scope(m_isolate); - HandleScope handle_scope(m_isolate); + v8::HandleScope handle_scope(m_isolate); v8::Local context =v8::Local::New(m_isolate, m_context); v8::Context::Scope context_scope(context); -- cgit v1.2.3