blob: ba935ed9d9f0df6b1ed142e4b724464b032fc1f5 [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_MEMORY_TOOL_H_
#define DEBUGD_SRC_MEMORY_TOOL_H_
#include <string>
#include <base/macros.h>
#include <dbus/file_descriptor.h>
#include "debugd/src/subprocess_tool.h"
namespace debugd {
class MemtesterTool : public SubprocessTool {
public:
MemtesterTool() = default;
~MemtesterTool() override = default;
std::string Start(const dbus::FileDescriptor& outfd,
const uint32_t& memory);
private:
DISALLOW_COPY_AND_ASSIGN(MemtesterTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_MEMORY_TOOL_H_