#ifndef SYSTEM_API_DBUS_VM_PLUGIN_DISPATCHER_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_VM_PLUGIN_DISPATCHER_DBUS_CONSTANTS_H_
namespace vm_tools {
namespace plugin_dispatcher {
const char kVmPluginDispatcherInterface[] = …;
const char kVmPluginDispatcherServicePath[] = …;
const char kVmPluginDispatcherServiceName[] = …;
const char kShutdownDispatherMethod[] = …;
const char kSendProblemReportMethod[] = …;
const char kRegisterVmMethod[] = …;
const char kUnregisterVmMethod[] = …;
const char kListVmsMethod[] = …;
const char kStartVmMethod[] = …;
const char kStopVmMethod[] = …;
const char kSuspendVmMethod[] = …;
const char kResetVmMethod[] = …;
const char kShowVmMethod[] = …;
const char kVmStateChangedSignal[] = …;
const char kVmToolsStateChangedSignal[] = …;
}
}
#endif