| 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
|
|
|