Index: chrome/common/notification_type.h |
diff --git a/chrome/common/notification_type.h b/chrome/common/notification_type.h |
index 167ca6cee618d49295a9497d5da7264b036e89f1..6d7f35541f0a3ab3a250a045657913a0b4859534 100644 |
--- a/chrome/common/notification_type.h |
+++ b/chrome/common/notification_type.h |
@@ -533,12 +533,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 |