1 // Copyright 2015 The Chromium OS Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef SYSTEM_API_DBUS_VM_CONCIERGE_DBUS_CONSTANTS_H_ 6 #define SYSTEM_API_DBUS_VM_CONCIERGE_DBUS_CONSTANTS_H_ 7 8 namespace vm_tools { 9 namespace concierge { 10 11 const char kVmConciergeInterface[] = "org.chromium.VmConcierge"; 12 const char kVmConciergeServicePath[] = "/org/chromium/VmConcierge"; 13 const char kVmConciergeServiceName[] = "org.chromium.VmConcierge"; 14 15 const char kStartVmMethod[] = "StartVm"; 16 const char kStopVmMethod[] = "StopVm"; 17 const char kStopAllVmsMethod[] = "StopAllVms"; 18 const char kGetVmInfoMethod[] = "GetVmInfo"; 19 const char kCreateDiskImageMethod[] = "CreateDiskImage"; 20 const char kDestroyDiskImageMethod[] = "DestroyDiskImage"; 21 22 } // namespace concierge 23 } // namespace vm_tools 24 25 26 #endif // SYSTEM_API_DBUS_VM_CONCIERGE_DBUS_CONSTANTS_H_ 27