blob: 6d5006d900f24cc9ce34465fe4958b7126026b1f [file] [log] [blame]
// Copyright 2019 The Fuchsia 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 SRC_PERFORMANCE_TRACE2JSON_CONVERT_H_
#define SRC_PERFORMANCE_TRACE2JSON_CONVERT_H_
#include <string>
struct ConvertSettings {
std::string input_file_name;
std::string output_file_name;
bool compressed_input = false;
bool compressed_output = false;
};
bool ConvertTrace(ConvertSettings);
#endif // SRC_PERFORMANCE_TRACE2JSON_CONVERT_H_