// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_ #define MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_ #include <memory> #include <string> // This has to be included first. // See http://code.google.com/p/googletest/issues/detail?id=371 #include "testing/gtest/include/gtest/gtest.h" #include "media/gpu/vaapi/test_utils.h" namespace base { class FilePath; } namespace media { class VaapiImageDecoder; class VaapiImageDecoderTestCommon : public testing::TestWithParam<vaapi_test_utils::TestParam> { … }; } // namespace media #endif // MEDIA_GPU_VAAPI_VAAPI_IMAGE_DECODER_TEST_COMMON_H_