Index: ash/system/tray/system_tray.h |
diff --git a/ash/system/tray/system_tray.h b/ash/system/tray/system_tray.h |
index 51258d38629240fc5604414b8a5681149e7c0a06..140ed7ee609469ac056297d0cfd3ae1ce1996d94 100644 |
--- a/ash/system/tray/system_tray.h |
+++ b/ash/system/tray/system_tray.h |
@@ -160,6 +160,9 @@ class ASH_EXPORT SystemTray : public internal::ActionableView, |
friend class internal::SystemTrayLayerAnimationObserver; |
friend class internal::SystemTrayBubble; |
+ // Resets |bubble_| and clears any related state. |
+ void DestroyBubble(); |
+ |
// Called when the widget associated with |bubble| closes. |bubble| should |
// always == |bubble_|. This triggers destroying |bubble_| and hiding the |
// launcher if necessary. |
@@ -253,6 +256,9 @@ class ASH_EXPORT SystemTray : public internal::ActionableView, |
scoped_ptr<internal::SystemTrayLayerAnimationObserver> |
layer_animation_observer_; |
+ // Keep track of the default view height for sizing detailed views. |
+ int default_bubble_height_; |
sadrul
2012/05/22 19:05:17
I don't believe this is related to notification vi
stevenjb
2012/05/22 22:39:00
Yes we need it, otherwise the detailed view gets s
|
+ |
DISALLOW_COPY_AND_ASSIGN(SystemTray); |
}; |