Chromium Code Reviews| Index: chrome/browser/ui/panels/panel.cc |
| diff --git a/chrome/browser/ui/panels/panel.cc b/chrome/browser/ui/panels/panel.cc |
| index 418f43fef93d30e1d1d9b597dd773701b4ed8dd4..b81dfba54ed99b2ac643bd33b20064ee4b733d2c 100644 |
| --- a/chrome/browser/ui/panels/panel.cc |
| +++ b/chrome/browser/ui/panels/panel.cc |
| @@ -17,6 +17,7 @@ |
| #include "chrome/common/extensions/extension.h" |
| #include "content/browser/tab_contents/tab_contents.h" |
| #include "content/common/view_messages.h" |
| +#include "content/public/browser/notification_service.h" |
| #include "content/public/browser/notification_source.h" |
| #include "content/public/browser/notification_types.h" |
| #include "ui/gfx/rect.h" |
| @@ -111,6 +112,11 @@ void Panel::SetExpansionState(ExpansionState new_state) { |
| // The minimized panel should not get the focus. |
| if (expansion_state_ == MINIMIZED) |
| Deactivate(); |
| + |
| + content::NotificationService::current()->Notify( |
|
jianli
2011/10/28 21:31:33
Probably we do not need this notification since Ru
Dmitry Titov
2011/10/29 00:04:56
Discussed offline. Decided to go with regualr patt
|
| + chrome::NOTIFICATION_PANEL_CHANGED_EXPANSION_STATE, |
| + content::Source<Panel>(this), |
| + content::NotificationService::NoDetails()); |
| } |
| bool Panel::ShouldBringUpTitlebar(int mouse_x, int mouse_y) const { |