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

Side by Side Diff: chromecast/crash/cast_crash_reporter_client_simple.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, 5 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
OLDNEW
(Empty)
1 // Copyright 2014 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/cast_crash_reporter_client.h"
6
7 #include "base/logging.h"
8
9 namespace chromecast {
10
11 bool CastCrashReporterClient::HandleCrashDump(const char* crashdump_filename) {
12 LOG(INFO) << "Process " << GetProcessType() << " crashed; minidump in "
13 << crashdump_filename;
14 return true;
15 }
16
17 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/crash/cast_crash_reporter_client.cc ('k') | chromecast/crash/cast_crashdump_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698