| Index: ash/content/display/screen_orientation_controller_chromeos_unittest.cc
|
| diff --git a/ash/content/display/screen_orientation_controller_chromeos_unittest.cc b/ash/content/display/screen_orientation_controller_chromeos_unittest.cc
|
| index ff0f1c3ec10df561c8ce54e56e9491be700dd599..56531e71c3cecf2016ebfc11d7689e889b2010d6 100644
|
| --- a/ash/content/display/screen_orientation_controller_chromeos_unittest.cc
|
| +++ b/ash/content/display/screen_orientation_controller_chromeos_unittest.cc
|
| @@ -138,8 +138,7 @@ ScreenOrientationControllerTest::ScreenOrientationControllerTest() {
|
| webview_test_helper_.reset(new views::WebViewTestHelper());
|
| }
|
|
|
| -ScreenOrientationControllerTest::~ScreenOrientationControllerTest() {
|
| -}
|
| +ScreenOrientationControllerTest::~ScreenOrientationControllerTest() {}
|
|
|
| content::WebContents* ScreenOrientationControllerTest::CreateWebContents() {
|
| return views::ViewsDelegate::GetInstance()->CreateWebContents(
|
| @@ -645,14 +644,16 @@ TEST_F(ScreenOrientationControllerTest, RotateInactiveDisplay) {
|
|
|
| test::ScopedSetInternalDisplayId set_internal(kInternalDisplayId);
|
|
|
| - ASSERT_NE(kNewRotation, display_manager->GetDisplayInfo(kInternalDisplayId)
|
| - .GetActiveRotation());
|
| + ASSERT_NE(
|
| + kNewRotation,
|
| + display_manager->GetDisplayInfo(kInternalDisplayId).GetActiveRotation());
|
|
|
| Shell::GetInstance()->screen_orientation_controller()->SetDisplayRotation(
|
| kNewRotation, display::Display::ROTATION_SOURCE_ACTIVE);
|
|
|
| - EXPECT_EQ(kNewRotation, display_manager->GetDisplayInfo(kInternalDisplayId)
|
| - .GetActiveRotation());
|
| + EXPECT_EQ(
|
| + kNewRotation,
|
| + display_manager->GetDisplayInfo(kInternalDisplayId).GetActiveRotation());
|
| }
|
|
|
| } // namespace ash
|
|
|