diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-10-06 07:50:47 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-10-06 07:50:47 -0700 |
commit | 5b3d0208723f21c50b9922bdc500c9d78c359a25 (patch) | |
tree | f381d6ee565cb981680a0e66d5f7c04efb9a22e8 /fpdfsdk/src/jsapi | |
parent | 35902e725aa6cc83a317c3b6fdd1926b81b8e44b (diff) | |
download | pdfium-5b3d0208723f21c50b9922bdc500c9d78c359a25.tar.xz |
Make the vast majority of JS headers private to src/javascript.
The fpdfsdk/include/javascript/IJavascript.h is the sole API.
This required moving a creaton method to it from JS_Runtime.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1389783002 .
Diffstat (limited to 'fpdfsdk/src/jsapi')
-rw-r--r-- | fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp b/fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp index 1c660397d1..394933a9ff 100644 --- a/fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp +++ b/fpdfsdk/src/jsapi/fxjs_v8_embeddertest.cpp @@ -2,10 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "../../../third_party/base/nonstd_unique_ptr.h" #include "../../../core/include/fpdfapi/fpdf_parser.h" #include "../../../testing/embedder_test.h" -#include "../../include/fsdk_mgr.h" -#include "../../include/javascript/JS_Runtime.h" #include "../../include/jsapi/fxjs_v8.h" #include "testing/gtest/include/gtest/gtest.h" @@ -49,7 +48,7 @@ class FXJSV8Embeddertest : public EmbedderTest { private: v8::Isolate* m_pIsolate; v8::Global<v8::Context> m_pPersistentContext; - nonstd::unique_ptr<v8::ArrayBuffer::Allocator> m_pAllocator; + nonstd::unique_ptr<FXJS_ArrayBufferAllocator> m_pAllocator; }; TEST_F(FXJSV8Embeddertest, Getters) { |