blob: 2a317baf666793c8ef80ac17ae24ca401f890962 [file] [log] [blame]
// Copyright 2016 The Fuchsia 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 GARNET_BIN_APPMGR_APPLICATION_ENVIRONMENT_CONTROLLER_IMPL_H_
#define GARNET_BIN_APPMGR_APPLICATION_ENVIRONMENT_CONTROLLER_IMPL_H_
#include <memory>
#include <fuchsia/sys/cpp/fidl.h>
#include "lib/fidl/cpp/binding.h"
#include "lib/fxl/macros.h"
namespace fuchsia {
namespace sys {
class Realm;
class EnvironmentControllerImpl
: public EnvironmentController {
public:
EnvironmentControllerImpl(
fidl::InterfaceRequest<EnvironmentController> request,
std::unique_ptr<Realm> realm);
~EnvironmentControllerImpl() override;
Realm* realm() const { return realm_.get(); }
// EnvironmentController implementation:
void Kill(KillCallback callback) override;
void Detach() override;
private:
fidl::Binding<EnvironmentController> binding_;
std::unique_ptr<Realm> realm_;
FXL_DISALLOW_COPY_AND_ASSIGN(EnvironmentControllerImpl);
};
} // namespace sys
} // namespace fuchsia
#endif // GARNET_BIN_APPMGR_APPLICATION_ENVIRONMENT_CONTROLLER_IMPL_H_