diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-13 05:06:09 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-13 05:06:09 +0000 |
commit | c5dbef0ce4b8279cb14ce5516a1f67f6543f5283 (patch) | |
tree | 036a5d68df14f300c6549286daceccb0a3ad4159 /content/common | |
parent | 42aec6de361b66396e60725353adc477948d6a43 (diff) | |
download | chromium_src-c5dbef0ce4b8279cb14ce5516a1f67f6543f5283.zip chromium_src-c5dbef0ce4b8279cb14ce5516a1f67f6543f5283.tar.gz chromium_src-c5dbef0ce4b8279cb14ce5516a1f67f6543f5283.tar.bz2 |
Re-land r84928: Move EFD to ExtensionTabHelper.
BUG=80308
TBR=mpcomplete@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85242 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/notification_type.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/content/common/notification_type.h b/content/common/notification_type.h index 850b887..c7e4d6a 100644 --- a/content/common/notification_type.h +++ b/content/common/notification_type.h @@ -459,6 +459,10 @@ class NotificationType { // Used only in testing. RENDER_WIDGET_HOST_DID_RECEIVE_INPUT_EVENT_ACK, + // Sent from RenderViewHost constructor. The source is the RenderViewHost, + // the details unused. + RENDER_VIEW_HOST_CREATED, + // Sent from ~RenderViewHost. The source is the RenderViewHost, the details // unused. RENDER_VIEW_HOST_DELETED, @@ -865,18 +869,6 @@ class NotificationType { // Extension, and the source is a Profile. EXTENSION_USER_SCRIPTS_UPDATED, - // Sent after a new ExtensionFunctionDispatcher is created. The details are - // an ExtensionFunctionDispatcher* and the source is a Profile*. This is - // similar in timing to EXTENSION_HOST_CREATED, but also fires when an - // extension view which is hosted in TabContents* is created. - EXTENSION_FUNCTION_DISPATCHER_CREATED, - - // Sent before an ExtensionHost is destroyed. The details are - // an ExtensionFunctionDispatcher* and the source is a Profile*. This is - // similar in timing to EXTENSION_HOST_DESTROYED, but also fires when an - // extension view which is hosted in TabContents* is destroyed. - EXTENSION_FUNCTION_DISPATCHER_DESTROYED, - // Sent after a new ExtensionHost is created. The details are // an ExtensionHost* and the source is an ExtensionProcessManager*. EXTENSION_HOST_CREATED, |