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

Unified Diff: chrome/common/chrome_notification_types.h

Issue 8503037: Fix the problem that notifications and panels overlap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix per feedback Created 9 years, 1 month 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 207ae7b0a2d93953f46c5efc3736445e0edd6153..f00ac844055a8515a1bcb0a3c53a38b180f8ad2f 100644
--- a/chrome/common/chrome_notification_types.h
+++ b/chrome/common/chrome_notification_types.h
@@ -948,6 +948,21 @@ enum NotificationType {
// Used only in unit testing.
NOTIFICATION_PANEL_WINDOW_SIZE_KNOWN,
+ // Sent when panel's bounds get changed.
+ // The source is the Panel, no details.
+ // Used only in coordination with notification balloons.
+ NOTIFICATION_PANEL_CHANGED_BOUNDS,
+
+ // Sent when panel is added into the panel manager.
+ // The source is the Panel, no details.
+ // Used only in coordination with notification balloons.
+ NOTIFICATION_PANEL_ADDED,
+
+ // Sent when panel is removed from the panel manager.
+ // The source is the Panel, no details.
+ // Used only in coordination with notification balloons.
+ NOTIFICATION_PANEL_REMOVED,
+
// Sent when a global error has changed and the error UI should update it
// self. The source is a Source<Profile> containing the profile for the
// error. The detail is a GlobalError object that has changed or NULL if

Powered by Google App Engine
This is Rietveld 408576698