// 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 "content/browser/renderer_host/display_feature.h" #include <vector> #include "testing/gtest/include/gtest/gtest.h" #include "ui/gfx/geometry/rect.h" namespace content { class DisplayFeatureTest : public testing::Test { … }; TEST_F(DisplayFeatureTest, ViewportSegmentsWithEmptyTopBrowserControls) { … } TEST_F(DisplayFeatureTest, ViewportSegmentsWithTopBrowserControls) { … } TEST_F(DisplayFeatureTest, ViewportSegmentsWithTooBigBrowserControls) { … } } // namespace content