blob: 6357f9c64e2043a31e0808660659087a9907d289 [file] [log] [blame]
// Copyright 2018 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 PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_COMMAND_RUNNERS_OPERATION_CALLS_INITIALIZE_CHAIN_CALL_H_
#define PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_COMMAND_RUNNERS_OPERATION_CALLS_INITIALIZE_CHAIN_CALL_H_
#include <fuchsia/modular/cpp/fidl.h>
#include <lib/async/cpp/operation.h>
#include "peridot/bin/sessionmgr/storage/story_storage.h"
namespace modular {
void AddInitializeChainOperation(
OperationContainer* operation_container, StoryStorage* story_storage,
fidl::VectorPtr<fidl::StringPtr> module_path,
fuchsia::modular::CreateModuleParameterMapInfoPtr create_parameter_map_info,
std::function<void(fuchsia::modular::ExecuteResult,
fuchsia::modular::ModuleParameterMapPtr)>
result_call);
} // namespace modular
#endif // PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_COMMAND_RUNNERS_OPERATION_CALLS_INITIALIZE_CHAIN_CALL_H_