blob: b7e92399386b73129a4bc92b7b966c7a86648d6f [file] [log] [blame]
// Copyright 2014 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 BUFFET_DBUS_CONSTANTS_H_
#define BUFFET_DBUS_CONSTANTS_H_
namespace buffet {
namespace dbus_constants {
// The service name claimed by the Buffet daemon.
extern const char kServiceName[];
// The object at this path implements the ObjectManager interface.
extern const char kRootServicePath[];
// Interface implemented by the object at kManagerServicePath.
extern const char kManagerInterface[];
extern const char kManagerServicePath[];
// Methods exposed as part of kManagerInterface.
extern const char kManagerCheckDeviceRegistered[];
extern const char kManagerGetDeviceInfo[];
extern const char kManagerStartRegisterDevice[];
extern const char kManagerFinishRegisterDevice[];
extern const char kManagerUpdateStateMethod[];
extern const char kManagerTestMethod[];
} // namespace dbus_constants
} // namespace buffet
#endif // BUFFET_DBUS_CONSTANTS_H_