Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: chrome/common/chrome_notification_types.h

Issue 10079023: Move notifications used only in chrome/ out of content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: six! Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/chrome_notification_types.h
diff --git a/chrome/common/chrome_notification_types.h b/chrome/common/chrome_notification_types.h
index 86c556a4b394db7f0045e9f637f0216c934f3b61..a42adf77082b71070dbe5b9f6f51680bde27495d 100644
--- a/chrome/common/chrome_notification_types.h
+++ b/chrome/common/chrome_notification_types.h
@@ -135,6 +135,25 @@ enum NotificationType {
// RenderViewHost and the details are not used.
NOTIFICATION_FOCUSED_EDITABLE_NODE_TOUCHED,
+ // Tabs --------------------------------------------------------------------
+
+ // Sent when a tab is added to a WebContentsDelegate. The source is the
+ // WebContentsDelegate and the details is the added WebContents.
+ NOTIFICATION_TAB_ADDED,
+
+ // This notification is sent after a tab has been appended to the tab_strip.
+ // The source is a Source<TabContentsWrapper> of the tab being added. There
+ // are no details.
+ NOTIFICATION_TAB_PARENTED,
+
+ // This message is sent before a tab has been closed. The source is a
+ // Source<NavigationController> with a pointer to the controller for the
+ // closed tab. No details are expected.
+ //
+ // See also content::NOTIFICATION_WEB_CONTENTS_DESTROYED, which is sent when
+ // the WebContents containing the NavigationController is destroyed.
+ NOTIFICATION_TAB_CLOSING,
+
// Stuff inside the tabs ---------------------------------------------------
// Sent when the bookmark bubble hides. The source is the profile, the

Powered by Google App Engine
This is Rietveld 408576698