// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PDF_PDFIUM_PDFIUM_TEST_BASE_H_ #define PDF_PDFIUM_PDFIUM_TEST_BASE_H_ #include <stddef.h> #include <memory> #include <vector> #include "base/files/file_path.h" #include "base/memory/raw_ptr.h" #include "build/build_config.h" #include "testing/gtest/include/gtest/gtest.h" namespace chrome_pdf { class PDFiumEngine; class PDFiumPage; class TestClient; class TestDocumentLoader; class PDFiumTestBase : public testing::TestWithParam<bool> { … }; } // namespace chrome_pdf #endif // PDF_PDFIUM_PDFIUM_TEST_BASE_H_