summaryrefslogtreecommitdiff
path: root/fxjs/cjs_v8.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-02-02 20:26:39 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-02-02 20:26:39 +0000
commitbbeb10daef8b485024aa68126ff267c81dd4c474 (patch)
treeb77ecded0dd00e5c701101534cf91b058f1f520b /fxjs/cjs_v8.h
parent1258f7f21725c703269581e0241fbad86d89209c (diff)
downloadpdfium-bbeb10daef8b485024aa68126ff267c81dd4c474.tar.xz
Small tidy of fxjs
Use correct include style for v8 headers. Use incomplete type to avoid including header. Change-Id: Ibd58aa25b2a17fbd1cf6a20643b6f25ca008974f Reviewed-on: https://pdfium-review.googlesource.com/25230 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjs_v8.h')
-rw-r--r--fxjs/cjs_v8.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/fxjs/cjs_v8.h b/fxjs/cjs_v8.h
index 1dd4953caa..1a8d15b500 100644
--- a/fxjs/cjs_v8.h
+++ b/fxjs/cjs_v8.h
@@ -7,15 +7,14 @@
#ifndef FXJS_CJS_V8_H_
#define FXJS_CJS_V8_H_
-#include <v8-util.h>
-#include <v8.h>
-
#include <map>
#include <vector>
#include "core/fxcrt/bytestring.h"
#include "core/fxcrt/fx_string.h"
#include "core/fxcrt/widestring.h"
+#include "v8/include/v8-util.h"
+#include "v8/include/v8.h"
#ifdef PDF_ENABLE_XFA
class CXFA_Object;