summaryrefslogtreecommitdiffstats
path: root/chromecast/crash/cast_crash_reporter_client_simple.cc
blob: aef4add13c0edd1612b1e96742096d588b9d8b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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