diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-19 02:27:16 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-19 02:27:16 +0000 |
commit | 299dabdd2178ac3126282ac854da86b6cd84be02 (patch) | |
tree | 4626d596651704ec7b467d60c011da7efe18dcda /chrome/common | |
parent | 2758136c0f073eacbb2943d5029b90eb4b1e5512 (diff) | |
download | chromium_src-299dabdd2178ac3126282ac854da86b6cd84be02.zip chromium_src-299dabdd2178ac3126282ac854da86b6cd84be02.tar.gz chromium_src-299dabdd2178ac3126282ac854da86b6cd84be02.tar.bz2 |
Land this change again now I've fixed the crash.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5669 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/notification_types.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/common/notification_types.h b/chrome/common/notification_types.h index 05160bb..53e0954 100644 --- a/chrome/common/notification_types.h +++ b/chrome/common/notification_types.h @@ -200,6 +200,16 @@ enum NotificationType { // No details are expected. NOTIFY_WEB_CONTENTS_DISCONNECTED, + // This message is sent when a new message is added to a WebContents. The + // source is a Source<WebContents> with a pointer to the WebContents the + // message was added to. + NOTIFY_WEB_CONTENTS_MESSAGE_ADDED, + + // This message is sent when a message is removed from a WebContents. The + // source is a Source<WebContents> with a pointer to the WebContents the + // message was removed from. + NOTIFY_WEB_CONTENTS_MESSAGE_REMOVED, + // This is sent when an externally hosted tab is created. The details contain // the ExternalTabContainer that contains the tab NOTIFY_EXTERNAL_TAB_CREATED, |