| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROMEOS_SYSTEM_DEVICEMODE_H_ |
| 6 #define CHROMEOS_SYSTEM_DEVICEMODE_H_ |
| 7 |
| 8 #include "chromeos/chromeos_export.h" |
| 9 |
| 10 namespace chromeos { |
| 11 |
| 12 // Returns true when running as system compositor. Ie. using libudev, kms and |
| 13 // evdev for input and output. |
| 14 CHROMEOS_EXPORT bool IsRunningAsSystemCompositor(); |
| 15 |
| 16 } // namespace chromeos |
| 17 |
| 18 #endif // CHROMEOS_SYSTEM_DEVICEMODE_H_ |
| OLD | NEW |