Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 1 | // 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 Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 8 | #include "testing/embedder_test.h" |
Tom Sepez | 72f520c | 2020-08-24 23:43:46 +0000 | [diff] [blame] | 9 | |
| 10 | namespace v8 { |
| 11 | class Isolate; |
| 12 | } // namespace v8 |
Lei Zhang | 7015634 | 2018-10-18 19:29:59 +0000 | [diff] [blame] | 13 | |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 14 | class JSEmbedderTest : public EmbedderTest { |
| 15 | public: |
| 16 | JSEmbedderTest(); |
| 17 | ~JSEmbedderTest() override; |
| 18 | |
Tom Sepez | 72f520c | 2020-08-24 23:43:46 +0000 | [diff] [blame] | 19 | v8::Isolate* isolate() const; |
Lei Zhang | 1ac47eb | 2015-12-21 11:04:44 -0800 | [diff] [blame] | 20 | }; |
| 21 | |
| 22 | #endif // TESTING_JS_EMBEDDER_TEST_H_ |