23 lines
723 B
C++
23 lines
723 B
C++
// Copyright 2015 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "components/nacl/browser/bad_message.h"
|
|
|
|
#include "base/logging.h"
|
|
#include "base/metrics/histogram_functions.h"
|
|
#include "content/public/browser/browser_message_filter.h"
|
|
|
|
namespace nacl {
|
|
namespace bad_message {
|
|
|
|
void ReceivedBadMessage(content::BrowserMessageFilter* filter,
|
|
BadMessageReason reason) {
|
|
LOG(ERROR) << "Terminating renderer for bad IPC message, reason " << reason;
|
|
base::UmaHistogramSparse("Stability.BadMessageTerminated.NaCl", reason);
|
|
filter->ShutdownForBadMessage();
|
|
}
|
|
|
|
} // namespace bad_message
|
|
} // namespace nacl
|