blob: e49f373fbb20257f50985970eb702aaa4668c2b2 [file] [log] [blame]
// Copyright 2015 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 PSYCHE_LIBPSYCHE_PSYCHE_DAEMON_H_
#define PSYCHE_LIBPSYCHE_PSYCHE_DAEMON_H_
#include <memory>
#include <string>
#include <base/macros.h>
#include <protobinder/binder_daemon.h>
#include "psyche/libpsyche/psyche_connection.h"
namespace psyche {
class PSYCHE_EXPORT PsycheDaemon : public protobinder::BinderDaemon {
public:
PsycheDaemon();
~PsycheDaemon() override;
PsycheConnection* psyche_connection() {
return psyche_connection_.get();
}
protected:
// Implement BinderDaemon
int OnInit() override;
private:
std::unique_ptr<PsycheConnection> psyche_connection_;
DISALLOW_COPY_AND_ASSIGN(PsycheDaemon);
};
} // namespace psyche
#endif // PSYCHE_LIBPSYCHE_PSYCHE_DAEMON_H_