// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gpu/command_buffer/service/retaining_one_shot_timer_holder.h" #include "base/check.h" #include "base/task/thread_pool.h" #include "base/test/bind.h" #include "base/test/task_environment.h" #include "base/time/time.h" #include "testing/gtest/include/gtest/gtest.h" namespace gpu { class RetainingOneShotTimerHolderTest : public testing::Test { … }; TEST_F(RetainingOneShotTimerHolderTest, SameThreadUsage) { … } TEST_F(RetainingOneShotTimerHolderTest, MultiThreadUsage) { … } } // namespace gpu