blob: 04701fecd4e01b884cf219520daaa67b8aa99b2d [file] [log] [blame]
Alex Vakulenko420e49f2014-12-01 17:53:27 -08001// Copyright 2014 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 BUFFET_DBUS_CONSTANTS_H_
6#define BUFFET_DBUS_CONSTANTS_H_
7
8namespace buffet {
9namespace dbus_constants {
10
11// The service name claimed by the Buffet daemon.
12extern const char kServiceName[];
13
14// The object at this path implements the ObjectManager interface.
15extern const char kRootServicePath[];
16
17// D-Bus object path prefix for Command objects.
18extern const char kCommandServicePathPrefix[];
19
20} // namespace dbus_constants
21} // namespace buffet
22
23#endif // BUFFET_DBUS_CONSTANTS_H_