blob: b656c14e4f72b5e8766f815da17330bc21bcd715 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/widget/desktop_aura/desktop_screen.h"
#include "ui/display/screen.h"
namespace views {
void InstallDesktopScreenIfNecessary() {
#if defined(OS_CHROMEOS)
// ChromeOS ozone builds use another path instead, where display::Screen is
// properly set. Thus, do early return here.
return;
#endif
// The screen may have already been set in test initialization.
if (!display::Screen::GetScreen())
display::Screen::SetScreenInstance(CreateDesktopScreen());
}
} // namespace views