You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.0 KiB
49 lines
2.0 KiB
// Copyright 2018 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.
|
|
|
|
#ifndef SYSTEM_API_DBUS_VM_CICERONE_DBUS_CONSTANTS_H_
|
|
#define SYSTEM_API_DBUS_VM_CICERONE_DBUS_CONSTANTS_H_
|
|
|
|
namespace vm_tools {
|
|
namespace cicerone {
|
|
|
|
const char kVmCiceroneInterface[] = "org.chromium.VmCicerone";
|
|
const char kVmCiceroneServicePath[] = "/org/chromium/VmCicerone";
|
|
const char kVmCiceroneServiceName[] = "org.chromium.VmCicerone";
|
|
|
|
// Methods to be called from vm_concierge.
|
|
const char kNotifyVmStartedMethod[] = "NotifyVmStarted";
|
|
const char kNotifyVmStoppedMethod[] = "NotifyVmStopped";
|
|
const char kGetContainerTokenMethod[] = "GetContainerToken";
|
|
const char kIsContainerRunningMethod[] = "IsContainerRunning";
|
|
|
|
// Methods to be called from Chrome.
|
|
const char kLaunchContainerApplicationMethod[] = "LaunchContainerApplication";
|
|
const char kGetContainerAppIconMethod[] = "GetContainerAppIcon";
|
|
const char kLaunchVshdMethod[] = "LaunchVshd";
|
|
const char kGetLinuxPackageInfoMethod[] = "GetLinuxPackageInfo";
|
|
const char kInstallLinuxPackageMethod[] = "InstallLinuxPackage";
|
|
const char kCreateLxdContainerMethod[] = "CreateLxdContainer";
|
|
const char kStartLxdContainerMethod[] = "StartLxdContainer";
|
|
const char kGetLxdContainerUsernameMethod[] = "GetLxdContainerUsername";
|
|
const char kSetUpLxdContainerUserMethod[] = "SetUpLxdContainerUser";
|
|
|
|
// Methods to be called from debugd.
|
|
const char kGetDebugInformation[] = "GetDebugInformation";
|
|
|
|
// Signals.
|
|
const char kContainerStartedSignal[] = "ContainerStarted";
|
|
const char kContainerShutdownSignal[] = "ContainerShutdown";
|
|
const char kInstallLinuxPackageProgressSignal[] =
|
|
"InstallLinuxPackageProgress";
|
|
const char kLxdContainerCreatedSignal[] = "LxdContainerCreated";
|
|
const char kLxdContainerDownloadingSignal[] = "LxdContainerDownloading";
|
|
const char kTremplinStartedSignal[] = "TremplinStarted";
|
|
|
|
} // namespace cicerone
|
|
} // namespace vm_tools
|
|
|
|
|
|
#endif // SYSTEM_API_DBUS_VM_CICERONE_DBUS_CONSTANTS_H_
|