| Index: chromecast/crash/linux/minidump_params.cc
|
| diff --git a/chromecast/crash/linux/minidump_params.cc b/chromecast/crash/linux/minidump_params.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3d532830c4847f66552937fd7d2bf34944bc689b
|
| --- /dev/null
|
| +++ b/chromecast/crash/linux/minidump_params.cc
|
| @@ -0,0 +1,35 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chromecast/crash/linux/minidump_params.h"
|
| +
|
| +namespace chromecast {
|
| +
|
| +MinidumpParams::MinidumpParams(const std::string& p_process_name,
|
| + const uint64_t p_process_uptime,
|
| + const std::string& p_suffix,
|
| + const std::string& p_previous_app_name,
|
| + const std::string& p_current_app_name,
|
| + const std::string& p_last_app_name,
|
| + const std::string& p_cast_release_version,
|
| + const std::string& p_cast_build_number)
|
| + : process_name(p_process_name),
|
| + process_uptime(p_process_uptime),
|
| + suffix(p_suffix),
|
| + previous_app_name(p_previous_app_name),
|
| + current_app_name(p_current_app_name),
|
| + last_app_name(p_last_app_name),
|
| + cast_release_version(p_cast_release_version),
|
| + cast_build_number(p_cast_build_number) {
|
| +}
|
| +
|
| +MinidumpParams::MinidumpParams() : process_uptime(0) {
|
| +}
|
| +
|
| +MinidumpParams::MinidumpParams(const MinidumpParams& params) = default;
|
| +
|
| +MinidumpParams::~MinidumpParams() {
|
| +}
|
| +
|
| +} // namespace chromecast
|
|
|