1 // Copyright 2015 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.
5 #ifndef CHROME_BROWSER_BAD_MESSAGE_H_
6 #define CHROME_BROWSER_BAD_MESSAGE_H_
9 class BrowserMessageFilter
;
10 class RenderProcessHost
;
13 namespace bad_message
{
15 // The browser process often chooses to terminate a renderer if it receives
16 // a bad IPC message. The reasons are tracked for metrics.
18 // See also content/browser/bad_message.h.
20 // NOTE: Do not remove or reorder elements in this list. Add new entries at the
21 // end. Items may be renamed but do not change the values. We rely on the enum
22 // values in histograms. Also update histograms.xml with any new values.
23 enum BadMessageReason
{
24 WRLHH_LOGGING_STOPPED_BAD_STATE
= 0,
26 // Please add new elements here. The naming convention is abbreviated class
27 // name (e.g. RenderFrameHost becomes RFH) plus a unique description of the
32 // Called when the browser receives a bad IPC message from a renderer process on
33 // the UI thread. Logs the event, records a histogram metric for the |reason|,
34 // and terminates the process for |host|.
35 void ReceivedBadMessage(content::RenderProcessHost
* host
,
36 BadMessageReason reason
);
38 // Called when a browser message filter receives a bad IPC message from a
39 // renderer or other child process. Logs the event, records a histogram metric
40 // for the |reason|, and terminates the process for |filter|.
41 void ReceivedBadMessage(content::BrowserMessageFilter
* filter
,
42 BadMessageReason reason
);
44 } // namespace bad_message
46 #endif // CHROME_BROWSER_BAD_MESSAGE_H_