#ifndef TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_
#define TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_
#include "base/files/file_path.h"
#include "base/memory/scoped_vector.h"
#include "ipc/ipc_message.h"
namespace ipc_fuzzer {
typedef ScopedVector<IPC::Message> MessageVector;
class MessageFile {
public:
static bool Read(const base::FilePath& path, MessageVector* messages);
static bool Write(const base::FilePath& path, const MessageVector& messages);
private:
DISALLOW_COPY_AND_ASSIGN(MessageFile);
};
}
#endif