// 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 "pdf/pdf_ink_brush.h" #include <memory> #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/geometry/point_f.h" #include "ui/gfx/geometry/rect.h" namespace chrome_pdf { namespace { std::unique_ptr<chrome_pdf::PdfInkBrush> CreatePdfInkBrush(float size) { … } } // namespace TEST(PdfInkBrushTest, InvalidateSinglePoint) { … } TEST(PdfInkBrushTest, InvalidateSinglePointNearBorder) { … } TEST(PdfInkBrushTest, InvalidateDifferentPoints) { … } } // namespace chrome_pdf