1 // Copyright 2018 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_SENESCHAL_DBUS_CONSTANTS_H_
6 #define SYSTEM_API_DBUS_SENESCHAL_DBUS_CONSTANTS_H_
7 
8 namespace vm_tools {
9 namespace seneschal {
10 
11 const char kSeneschalInterface[] = "org.chromium.Seneschal";
12 const char kSeneschalServicePath[] = "/org/chromium/Seneschal";
13 const char kSeneschalServiceName[] = "org.chromium.Seneschal";
14 
15 // Exported methods.
16 const char kStartServerMethod[] = "StartServer";
17 const char kStopServerMethod[] = "StopServer";
18 const char kSharePathMethod[] = "SharePath";
19 
20 
21 }  // namespace seneschal
22 }  // namespace vm_tools
23 
24 #endif // SYSTEM_API_DBUS_SENESCHAL_DBUS_CONSTANTS_H_
25