blob: 3e39e1036660552b8e8412ff31c02c8c33fd6f9a [file] [log] [blame]
// 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 chromeos
namespace ash {
// Handles starting/stopping the D-Bus thread for ash services and also
// manages the liftime of the ash D-Bus services.
class AshDBusServices {
public:
AshDBusServices();
~AshDBusServices();
private:
std::unique_ptr<chromeos::CrosDBusService> display_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_