blob: f752b8ddda6866418edea978e763d5a343d02b6c [file] [log] [blame] [edit]
// Copyright 2022 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_LVMD_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_LVMD_DBUS_CONSTANTS_H_
namespace lvmd {
constexpr char kLvmdInterface[] = "org.chromium.Lvmd";
constexpr char kLvmdServicePath[] = "/org/chromium/Lvmd";
constexpr char kLvmdServiceName[] = "org.chromium.Lvmd";
// TODO(b/236007986): Add methods to use in clients.
constexpr char kErrorInternal[] = "org.chromium.Lvmd.INTERNAL";
constexpr int kErrorSize = -1;
} // namespace lvmd
#endif // SYSTEM_API_DBUS_LVMD_DBUS_CONSTANTS_H_