blob: d8c70ba0bca3ebeff2d763f59b9f6eda68189d4c [file] [log] [blame]
Christopher Wileyeb19fa02014-03-27 13:27:30 -07001// 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#include "buffet/dbus_constants.h"
6
7namespace buffet {
8
9namespace dbus_constants {
10
11const char kServiceName[] = "org.chromium.Buffet";
12
Christopher Wileyeb19fa02014-03-27 13:27:30 -070013const char kRootServicePath[] = "/org/chromium/Buffet";
14
Christopher Wileya4915c42014-03-27 14:45:37 -070015const char kManagerInterface[] = "org.chromium.Buffet.Manager";
16const char kManagerServicePath[] = "/org/chromium/Buffet/Manager";
17
Alex Vakulenko3cb466c2014-04-15 11:36:32 -070018const char kManagerCheckDeviceRegistered[] = "CheckDeviceRegistered";
19const char kManagerGetDeviceInfo[] = "GetDeviceInfo";
20const char kManagerStartRegisterDevice[] = "StartRegisterDevice";
21const char kManagerFinishRegisterDevice[] = "FinishRegisterDevice";
22const char kManagerUpdateStateMethod[] = "UpdateState";
Christopher Wileyb76eb292014-05-05 16:09:16 -070023const char kManagerTestMethod[] = "TestMethod";
Christopher Wileya4915c42014-03-27 14:45:37 -070024
Christopher Wileyeb19fa02014-03-27 13:27:30 -070025} // namespace dbus_constants
26
27} // namespace buffet