forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathash_dbus_services.h
39 lines (28 loc) · 940 Bytes
/
ash_dbus_services.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2018 The Chromium 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 ASH_DBUS_ASH_DBUS_SERVICES_H_
#define ASH_DBUS_ASH_DBUS_SERVICES_H_
#include <memory>
#include "base/macros.h"
namespace chromeos {
class CrosDBusService;
}
namespace dbus {
class Bus;
}
namespace ash {
// Owns and manages the lifetime of the ash D-Bus services.
class AshDBusServices {
public:
explicit AshDBusServices(dbus::Bus* system_bus);
~AshDBusServices();
private:
std::unique_ptr<chromeos::CrosDBusService> display_service_;
std::unique_ptr<chromeos::CrosDBusService> gesture_properties_service_;
std::unique_ptr<chromeos::CrosDBusService> liveness_service_;
std::unique_ptr<chromeos::CrosDBusService> url_handler_service_;
DISALLOW_COPY_AND_ASSIGN(AshDBusServices);
};
} // namespace ash
#endif // ASH_DBUS_ASH_DBUS_SERVICES_H_