summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-18 19:15:47 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-18 19:15:47 +0000
commit378ec548964d57311faab4627e570566bd20aaa0 (patch)
tree4b34aed8a671fb573363aab7f571de38e8e62237
parentd66f39a421233931d4da0832c72aae965ad909ee (diff)
downloadpdfium-378ec548964d57311faab4627e570566bd20aaa0.tar.xz
Remove a few V8 includes from header files.
Change-Id: I087c4e712aa87f99ada4ef515f5b361037a5dae0 Reviewed-on: https://pdfium-review.googlesource.com/c/44257 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
-rw-r--r--fxjs/cfx_v8.h1
-rw-r--r--fxjs/cfxjs_engine.cpp5
-rw-r--r--fxjs/cfxjs_engine.h5
-rw-r--r--testing/embedder_test.cpp6
-rw-r--r--testing/embedder_test.h8
5 files changed, 13 insertions, 12 deletions
diff --git a/fxjs/cfx_v8.h b/fxjs/cfx_v8.h
index 3ebabdefec..70d365517a 100644
--- a/fxjs/cfx_v8.h
+++ b/fxjs/cfx_v8.h
@@ -11,7 +11,6 @@
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/unowned_ptr.h"
-#include "v8/include/v8-util.h"
#include "v8/include/v8.h"
class CFX_V8 {
diff --git a/fxjs/cfxjs_engine.cpp b/fxjs/cfxjs_engine.cpp
index f1dd45016e..c993a7dafa 100644
--- a/fxjs/cfxjs_engine.cpp
+++ b/fxjs/cfxjs_engine.cpp
@@ -15,6 +15,7 @@
#include "fxjs/cjs_object.h"
#include "third_party/base/ptr_util.h"
#include "third_party/base/stl_util.h"
+#include "v8/include/v8-util.h"
class CFXJS_PerObjectData;
@@ -590,6 +591,10 @@ void CFXJS_Engine::Error(const WideString& message) {
GetIsolate()->ThrowException(NewString(message.AsStringView()));
}
+v8::Local<v8::Context> CFXJS_Engine::GetV8Context() {
+ return v8::Local<v8::Context>::New(GetIsolate(), m_V8Context);
+}
+
// static
CJS_Object* CFXJS_Engine::GetObjectPrivate(v8::Local<v8::Object> pObj) {
auto* pData = CFXJS_PerObjectData::GetFromObject(pObj);
diff --git a/fxjs/cfxjs_engine.h b/fxjs/cfxjs_engine.h
index 0ee4fe5bf4..8c6c69c9be 100644
--- a/fxjs/cfxjs_engine.h
+++ b/fxjs/cfxjs_engine.h
@@ -22,7 +22,6 @@
#include "core/fxcrt/fx_string.h"
#include "fxjs/cfx_v8.h"
#include "fxjs/ijs_runtime.h"
-#include "v8/include/v8-util.h"
#include "v8/include/v8.h"
#ifdef PDF_ENABLE_XFA
@@ -128,9 +127,7 @@ class CFXJS_Engine : public CFX_V8 {
v8::Local<v8::Object> NewFXJSBoundObject(int nObjDefnID, FXJSOBJTYPE type);
void Error(const WideString& message);
- v8::Local<v8::Context> GetV8Context() {
- return v8::Local<v8::Context>::New(GetIsolate(), m_V8Context);
- }
+ v8::Local<v8::Context> GetV8Context();
v8::Local<v8::Array> GetConstArray(const WideString& name);
void SetConstArray(const WideString& name, v8::Local<v8::Array> array);
diff --git a/testing/embedder_test.cpp b/testing/embedder_test.cpp
index 10b944d608..6dd13e2dc4 100644
--- a/testing/embedder_test.cpp
+++ b/testing/embedder_test.cpp
@@ -94,6 +94,12 @@ void EmbedderTest::TearDown() {
delete loader_;
}
+#ifdef PDF_ENABLE_V8
+void EmbedderTest::SetExternalIsolate(void* isolate) {
+ external_isolate_ = static_cast<v8::Isolate*>(isolate);
+}
+#endif // PDF_ENABLE_V8
+
bool EmbedderTest::CreateEmptyDocument() {
document_ = FPDF_CreateNewDocument();
if (!document_)
diff --git a/testing/embedder_test.h b/testing/embedder_test.h
index fc9624118d..37c5ca8c27 100644
--- a/testing/embedder_test.h
+++ b/testing/embedder_test.h
@@ -20,10 +20,6 @@
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/test_support.h"
-#ifdef PDF_ENABLE_V8
-#include "v8/include/v8.h"
-#endif // PDF_ENABLE_v8
-
class TestLoader;
// This class is used to load a PDF document, and then run programatic
@@ -75,9 +71,7 @@ class EmbedderTest : public ::testing::Test,
#ifdef PDF_ENABLE_V8
// Call before SetUp to pass shared isolate, otherwise PDFium creates one.
- void SetExternalIsolate(void* isolate) {
- external_isolate_ = static_cast<v8::Isolate*>(isolate);
- }
+ void SetExternalIsolate(void* isolate);
#endif // PDF_ENABLE_V8
void SetDelegate(Delegate* delegate) {