| Index: chrome/common/notification_type.h
|
| diff --git a/chrome/common/notification_type.h b/chrome/common/notification_type.h
|
| index a11fa49621e08271e39c1b96518077ff80886ca3..609aecd3f75541455a52f0220854db69452d4a45 100644
|
| --- a/chrome/common/notification_type.h
|
| +++ b/chrome/common/notification_type.h
|
| @@ -696,6 +696,22 @@ class NotificationType {
|
|
|
| // Debugging ---------------------------------------------------------------
|
|
|
| + // Desktop Notifications ---------------------------------------------------
|
| +
|
| + // This notification is sent when a balloon is connected to a renderer
|
| + // process. The source is a Source<Balloon> with a pointer to the
|
| + // the balloon. A NOTIFY_BALLOON_DISCONNECTED notification is
|
| + // guaranteed before the source pointer becomes junk.
|
| + // No details are expected.
|
| + NOTIFY_BALLOON_CONNECTED,
|
| +
|
| + // This message is sent after a balloon is disconnected from the renderer
|
| + // process.
|
| + // The source is a Source<Balloon> with a pointer to the balloon (the pointer
|
| + // is usable).
|
| + // No details are expected.
|
| + NOTIFY_BALLOON_DISCONNECTED,
|
| +
|
| // Count (must be last) ----------------------------------------------------
|
| // Used to determine the number of notification types. Not valid as
|
| // a type parameter when registering for or posting notifications.
|
|
|