blob: 13c8a71250dd394322c4df5757d6a697cff3196e [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[];
// Interface implemented by the object at kRootServicePath.
extern const char kRootInterface[];
extern const char kRootServicePath[];
// Methods exposed as part of kRootInterface.
extern const char kRootTestMethod[];
// 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[];
} // namespace dbus_constants
} // namespace buffet
#endif // BUFFET_DBUS_CONSTANTS_H_