blob: 22e9d2d4070bd9d5c170a336c2269f470aa9ea50 [file] [log] [blame]
Lei Zhang1ac47eb2015-12-21 11:04:44 -08001// Copyright 2015 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef TESTING_JS_EMBEDDER_TEST_H_
6#define TESTING_JS_EMBEDDER_TEST_H_
7
Lei Zhang1ac47eb2015-12-21 11:04:44 -08008#include "testing/embedder_test.h"
Tom Sepez72f520c2020-08-24 23:43:46 +00009
10namespace v8 {
11class Isolate;
12} // namespace v8
Lei Zhang70156342018-10-18 19:29:59 +000013
Lei Zhang1ac47eb2015-12-21 11:04:44 -080014class JSEmbedderTest : public EmbedderTest {
15 public:
16 JSEmbedderTest();
17 ~JSEmbedderTest() override;
18
Tom Sepez72f520c2020-08-24 23:43:46 +000019 v8::Isolate* isolate() const;
Lei Zhang1ac47eb2015-12-21 11:04:44 -080020};
21
22#endif // TESTING_JS_EMBEDDER_TEST_H_