// Copyright 2018 The ChromiumOS Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SYSTEM_API_DBUS_CECSERVICE_DBUS_CONSTANTS_H_ #define SYSTEM_API_DBUS_CECSERVICE_DBUS_CONSTANTS_H_ namespace cecservice { const char kCecServiceInterface[] = …; const char kCecServicePath[] = …; const char kCecServiceName[] = …; // Methods. const char kSendStandByToAllDevicesMethod[] = …; const char kSendWakeUpToAllDevicesMethod[] = …; const char kGetTvsPowerStatus[] = …; // Result of a TV power status query. enum TvPowerStatus { … }; } // namespace cecservice #endif // SYSTEM_API_DBUS_CECSERVICE_DBUS_CONSTANTS_H_