| Index: content/browser/bad_message.cc
|
| diff --git a/content/browser/bad_message.cc b/content/browser/bad_message.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cc41b00bd82fce643d63931134ee855ccb0a1e42
|
| --- /dev/null
|
| +++ b/content/browser/bad_message.cc
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2015 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 "content/browser/bad_message.h"
|
| +
|
| +#include "base/logging.h"
|
| +#include "base/metrics/histogram_macros.h"
|
| +#include "content/public/browser/render_process_host.h"
|
| +
|
| +namespace content {
|
| +namespace bad_message {
|
| +
|
| +void ReceivedBadMessage(RenderProcessHost* host, BadMessageReason reason) {
|
| + LOG(ERROR) << "Terminating renderer for bad IPC message, reason " << reason;
|
| + UMA_HISTOGRAM_ENUMERATION("Stability.BadMessageTerminated.Content", reason,
|
| + BAD_MESSAGE_MAX);
|
| + host->ShutdownForBadMessage();
|
| +}
|
| +
|
| +} // namespace bad_message
|
| +} // namespace content
|
|
|