Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: chromecast/crash/linux/minidump_params.cc

Issue 1154383006: Adding crash utilities to chromecast/crash. (Closed) Base URL: https://eureka-internal.googlesource.com/chromium/src@master
Patch Set: cast_shell_unittests not built for android Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chromecast/crash/linux/minidump_params.h ('k') | chromecast/crash/linux/minidump_writer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chromecast/crash/linux/minidump_params.h"
6
7 namespace chromecast {
8
9 MinidumpParams::MinidumpParams(const std::string& p_process_name,
10 const uint64_t p_process_uptime,
11 const std::string& p_suffix,
12 const std::string& p_previous_app_name,
13 const std::string& p_current_app_name,
14 const std::string& p_last_app_name,
15 const std::string& p_cast_release_version,
16 const std::string& p_cast_build_number)
17 : process_name(p_process_name),
18 process_uptime(p_process_uptime),
19 suffix(p_suffix),
20 previous_app_name(p_previous_app_name),
21 current_app_name(p_current_app_name),
22 last_app_name(p_last_app_name),
23 cast_release_version(p_cast_release_version),
24 cast_build_number(p_cast_build_number) {
25 }
26
27 MinidumpParams::MinidumpParams() : process_uptime(0) {
28 }
29
30 MinidumpParams::MinidumpParams(const MinidumpParams& params) = default;
31
32 MinidumpParams::~MinidumpParams() {
33 }
34
35 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/crash/linux/minidump_params.h ('k') | chromecast/crash/linux/minidump_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698