diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-18 02:00:53 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-18 02:00:53 +0000 |
commit | 7a16aeeb28850afdf5d512cc2e4bb2e58f4b1c10 (patch) | |
tree | 1070bdfc922ca45660dc6bf56b26fc19dfeba7d6 /chrome/common | |
parent | f47c61458a0c89c9ec57b3bb3a51d4ef46528ca6 (diff) | |
download | chromium_src-7a16aeeb28850afdf5d512cc2e4bb2e58f4b1c10.zip chromium_src-7a16aeeb28850afdf5d512cc2e4bb2e58f4b1c10.tar.gz chromium_src-7a16aeeb28850afdf5d512cc2e4bb2e58f4b1c10.tar.bz2 |
Last couple of bits of new-frame related cleanup:
- Remove frame_util.cc, moving functions to BrowserList (endsession) and BrowserView (GetBrowserWindowForHWND)
- Tidy up interface for TabIconView model. The model now sources only the information it needs (loading state and favicon).
- Replace BrowserType class with an enum on Browser.
http://crbug.com/2320
http://crbug.com/3363
Review URL: http://codereview.chromium.org/10786
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5596 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, |