Index: chrome/common/notification_type.h |
diff --git a/chrome/common/notification_type.h b/chrome/common/notification_type.h |
index 3adc3ff0641b0c44e990cc25a5031437286350b8..05eef847fd939d3ce82a047b91cab31656468e36 100644 |
--- a/chrome/common/notification_type.h |
+++ b/chrome/common/notification_type.h |
@@ -548,12 +548,20 @@ class NotificationType { |
// The details are in a Details<ChildProcessInfo>. |
CHILD_PROCESS_HOST_DISCONNECTED, |
- // This message is sent when a child process disappears unexpectedly. |
- // There is no usable source, since it is sent from an ephemeral task; |
- // register for AllSources() to receive this notification. The details are |
- // in a Details<ChildProcessInfo>. |
+ // This message is sent when a child process disappears |
+ // unexpectedly as a result of a crash. There is no usable |
+ // source, since it is sent from an ephemeral task; register for |
+ // AllSources() to receive this notification. The details are in |
+ // a Details<ChildProcessInfo>. |
CHILD_PROCESS_CRASHED, |
+ // This message is sent when a child process disappears |
+ // unexpectedly as a result of a termination signal. There is no |
+ // usable source, since it is sent from an ephemeral task; |
+ // register for AllSources() to receive this notification. The |
+ // details are in a Details<ChildProcessInfo>. |
+ CHILD_PROCESS_WAS_KILLED, |
+ |
// This message indicates that an instance of a particular child was |
// created in a page. (If one page contains several regions rendered by |
// the same child, this notification will occur once for each region |