aboutsummaryrefslogtreecommitdiff
path: root/dbus/diagnosticsd/dbus-constants.h
blob: edea7da7a1e7821de6229925a633a9ad09d02c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2018 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.

// Constants for the D-Bus API exposed by the diagnosticsd daemon. Normally the
// consumer of this API is the browser.

#ifndef SYSTEM_API_DBUS_DIAGNOSTICSD_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_DIAGNOSTICSD_DBUS_CONSTANTS_H_

namespace diagnostics {

const char kDiagnosticsdServiceInterface[] =
    "org.chromium.DiagnosticsdInterface";
const char kDiagnosticsdServicePath[] = "/org/chromium/Diagnosticsd";
const char kDiagnosticsdServiceName[] = "org.chromium.Diagnosticsd";

const char kDiagnosticsdBootstrapMojoConnectionMethod[] =
    "BootstrapMojoConnection";

}  // namespace diagnostics

#endif  // SYSTEM_API_DBUS_DIAGNOSTICSD_DBUS_CONSTANTS_H_