// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/base/x/x11_cursor_loader.h" #undef Bool #include "base/containers/span.h" #include "base/memory/ref_counted_memory.h" #include "base/numerics/byte_conversions.h" #include "testing/gtest/include/gtest/gtest.h" namespace ui { namespace { std::vector<XCursorLoader::Image> ParseFile(base::span<const uint32_t> data, uint32_t preferred_size) { … } } // namespace TEST(XCursorLoaderTest, Basic) { … } TEST(XCursorLoaderTest, BestSize) { … } TEST(XCursorLoaderTest, Animated) { … } } // namespace ui