blob: e307147191adf67d733373e25ca889cc5f39d4ec [file] [log] [blame]
Elly Jonesa44d22d2012-01-05 18:05:56 -05001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Elly Jones00e439d2011-12-19 16:59:10 -05002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef TRACEPATH_TOOL_H
6#define TRACEPATH_TOOL_H
7
8#include <map>
9#include <string>
10
11#include <base/basictypes.h>
12#include <dbus-c++/dbus.h>
13
14#include "subprocess_tool.h"
15
16namespace debugd {
17
Elly Jones00e439d2011-12-19 16:59:10 -050018class TracePathTool : public SubprocessTool {
19 public:
20 TracePathTool();
21 ~TracePathTool();
22
23 std::string Start(const DBus::FileDescriptor& outfd,
24 const std::string& destination,
25 const std::map<std::string, DBus::Variant>& options,
26 DBus::Error& error);
27};
28
29}; // namespace debugd
30
31#endif // PING_TOOL_H