blob: 2b8f4b461f647086caf2227e477f7bfc4279c198 [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// 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 snapshot_manager daemon.
// Normally the consumer of this API is the browser.
#ifndef SYSTEM_API_DBUS_ARC_DATA_SNAPSHOTD_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_ARC_DATA_SNAPSHOTD_DBUS_CONSTANTS_H_
namespace arc {
namespace data_snapshotd {
constexpr char kArcDataSnapshotdServiceInterface[] =
"org.chromium.ArcDataSnapshotd";
constexpr char kArcDataSnapshotdServicePath[] =
"/org/chromium/ArcDataSnapshotd";
constexpr char kArcDataSnapshotdServiceName[] = "org.chromium.ArcDataSnapshotd";
// Methods:
constexpr char kGenerateKeyPairMethod[] = "GenerateKeyPair";
constexpr char kClearSnapshotMethod[] = "ClearSnapshot";
constexpr char kTakeSnapshotMethod[] = "TakeSnapshot";
constexpr char kLoadSnapshotMethod[] = "LoadSnapshot";
constexpr char kUpdateMethod[] = "Update";
} // namespace data_snapshotd
} // namespace arc
#endif // SYSTEM_API_DBUS_ARC_DATA_SNAPSHOTD_DBUS_CONSTANTS_H_