blob: df610ee6ff43bfd7be4eadcde488882e91b9d5c4 [file] [log] [blame]
// Copyright (c) 2012 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 DEBUGD_SRC_TRACEPATH_TOOL_H_
#define DEBUGD_SRC_TRACEPATH_TOOL_H_
#include <string>
#include <base/macros.h>
#include <brillo/variant_dictionary.h>
#include "debugd/src/subprocess_tool.h"
namespace debugd {
class TracePathTool : public SubprocessTool {
public:
TracePathTool() = default;
TracePathTool(const TracePathTool&) = delete;
TracePathTool& operator=(const TracePathTool&) = delete;
~TracePathTool() override = default;
std::string Start(const base::ScopedFD& outfd,
const std::string& destination,
const brillo::VariantDictionary& options);
};
} // namespace debugd
#endif // DEBUGD_SRC_TRACEPATH_TOOL_H_