// Copyright 2020 The ChromiumOS Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Constants for the D-Bus API exposed by the cfm mojo broker. // The browser is 'normally' the consumer of this API. #ifndef SYSTEM_API_DBUS_CFM_DBUS_CONSTANTS_H_ #define SYSTEM_API_DBUS_CFM_DBUS_CONSTANTS_H_ namespace cfm { namespace broker { constexpr char kServiceInterfaceName[] = …; constexpr char kServicePath[] = …; constexpr char kServiceName[] = …; // Method names. constexpr char kBootstrapMojoConnectionMethod[] = …; // Signal names. constexpr char kMojoServiceRequestedSignal[] = …; } // namespace broker } // namespace cfm #endif // SYSTEM_API_DBUS_CFM_DBUS_CONSTANTS_H_