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

Unified Diff: chromecast/crash/cast_crash_reporter_client_simple.cc

Issue 731933005: Chromecast: adds crash handling for Linux build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/crash/cast_crash_reporter_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/crash/cast_crash_reporter_client_simple.cc
diff --git a/chromecast/crash/cast_crash_reporter_client_simple.cc b/chromecast/crash/cast_crash_reporter_client_simple.cc
new file mode 100644
index 0000000000000000000000000000000000000000..aef4add13c0edd1612b1e96742096d588b9d8b81
--- /dev/null
+++ b/chromecast/crash/cast_crash_reporter_client_simple.cc
@@ -0,0 +1,17 @@
+// Copyright 2014 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/cast_crash_reporter_client.h"
+
+#include "base/logging.h"
+
+namespace chromecast {
+
+bool CastCrashReporterClient::HandleCrashDump(const char* crashdump_filename) {
+ LOG(INFO) << "Process " << GetProcessType() << " crashed; minidump in "
+ << crashdump_filename;
+ return true;
+}
+
+} // namespace chromecast
« no previous file with comments | « chromecast/crash/cast_crash_reporter_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698