// Copyright 2014 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/render_widget_host_view_base.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/display/display.h" #include "ui/display/display_util.h" namespace content { namespace { display::Display CreateDisplay(int width, int height, display::Display::Rotation rotation) { … } } // anonymous namespace TEST(RenderWidgetHostViewBaseTest, OrientationTypeForMobile) { … } TEST(RenderWidgetHostViewBaseTest, OrientationTypeForDesktop) { … } } // namespace content