Files.app: Dispatch 'drive-connection-changed' event on initialization of VolumeManag...
[chromium-blink-merge.git] / extensions / browser / bad_message.h
blob2e35acf556b3b8c58f091d1d54be3509a6649eba
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 EXTENSIONS_BROWSER_BAD_MESSAGE_H_
6 #define EXTENSIONS_BROWSER_BAD_MESSAGE_H_
8 namespace content {
9 class RenderProcessHost;
12 namespace extensions {
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 by
23 // running:
24 // python tools/metrics/histograms/update_bad_message_reasons.py
25 enum BadMessageReason {
26 EOG_BAD_ORIGIN = 0,
27 EVG_BAD_ORIGIN = 1,
28 BH_BLOB_NOT_OWNED = 2,
29 EH_BAD_EVENT_ID = 3,
30 AVG_BAD_INST_ID = 4,
31 AVG_BAD_EXT_ID = 5,
32 AVG_NULL_AVG = 6,
33 // Please add new elements here. The naming convention is abbreviated class
34 // name (e.g. ExtensionHost becomes EH) plus a unique description of the
35 // reason.
36 BAD_MESSAGE_MAX
39 // Called when the browser receives a bad IPC message from an extension process.
40 // Logs the event, records a histogram metric for the |reason|, and terminates
41 // the process for |host|.
42 void ReceivedBadMessage(content::RenderProcessHost* host,
43 BadMessageReason reason);
45 } // namespace bad_message
46 } // namespace extensions
48 #endif // EXTENSIONS_BROWSER_BAD_MESSAGE_H_