#include "pdf/draw_utils/coordinates.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
namespace chrome_pdf {
namespace draw_utils {
namespace {
constexpr int kBottomSeparator = …;
constexpr int kHorizontalSeparator = …;
constexpr gfx::Insets kLeftInsets = …;
constexpr gfx::Insets kRightInsets = …;
constexpr gfx::Insets kSingleViewInsets = …;
}
TEST(CoordinateTest, AdjustBottomGapForRightSidePage) { … }
TEST(CoordinateTest, CenterRectHorizontally) { … }
TEST(CoordinateTest, ExpandDocumentSize) { … }
TEST(CoordinateTest, GetBottomGapBetweenRects) { … }
TEST(CoordinateTest, GetMostVisiblePage) { … }
TEST(CoordinateTest, GetPageInsetsForTwoUpView) { … }
TEST(CoordinateTest, GetRectForSingleView) { … }
TEST(CoordinateTest, GetScreenRect) { … }
TEST(CoordinateTest, GetSurroundingRect) { … }
TEST(CoordinateTest, GetLeftFillRect) { … }
TEST(CoordinateTest, GetRightFillRect) { … }
TEST(CoordinateTest, GetBottomFillRect) { … }
TEST(CoordinateTest, GetLeftRectForTwoUpView) { … }
TEST(CoordinateTest, GetRightRectForTwoUpView) { … }
}
}