blob: e6b166d6312abf7d524abfd65e217f1c5b2ab9eb [file] [log] [blame]
// Copyright 2019 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_WIFI_FW_DUMP_TOOL_H_
#define DEBUGD_SRC_WIFI_FW_DUMP_TOOL_H_
#include <base/macros.h>
#include <string>
namespace debugd {
class WifiFWDumpTool {
public:
WifiFWDumpTool() = default;
WifiFWDumpTool(const WifiFWDumpTool&) = delete;
WifiFWDumpTool& operator=(const WifiFWDumpTool&) = delete;
~WifiFWDumpTool() = default;
// Trigger WiFi firmware dumper.
std::string WifiFWDump();
};
} // namespace debugd
#endif // DEBUGD_SRC_WIFI_FW_DUMP_TOOL_H_