blob: 49fc3ec109a6efc9311201410ee6f2b467961dbe [file] [log] [blame]
// Copyright 2017 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 "chromeos/system/devicemode.h"
#include "base/command_line.h"
#include "base/system/sys_info.h"
#include "chromeos/constants/chromeos_switches.h"
namespace chromeos {
bool IsRunningAsSystemCompositor() {
static bool is_running_on_chrome_os = base::SysInfo::IsRunningOnChromeOS();
return is_running_on_chrome_os ||
base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kForceSystemCompositorMode);
}
} // namespace chromeos