Index: ui/app_list/app_list_view.cc |
diff --git a/ui/app_list/app_list_view.cc b/ui/app_list/app_list_view.cc |
index 97e4a9901462c089853b8afa6eb9157e88300b22..7dc9ff0498ecfa59364a9c941e4156da4a6879e5 100644 |
--- a/ui/app_list/app_list_view.cc |
+++ b/ui/app_list/app_list_view.cc |
@@ -200,4 +200,15 @@ void AppListView::InvokeResultAction(const SearchResult& result, |
delegate_->InvokeSearchResultAction(result, action_index, event_flags); |
} |
+void AppListView::OnWidgetClosing(views::Widget* widget) { |
xiyuan
2012/10/09 17:43:15
Call BubbleDelegateView::OnWidgetClosing or add a
benwells
2012/10/10 00:55:21
Done (and also check widget).
|
+ if (delegate_.get()) |
+ delegate_->ViewClosing(); |
+} |
+ |
+void AppListView::OnWidgetActivationChanged(views::Widget* widget, |
+ bool active) { |
xiyuan
2012/10/09 17:43:15
Add a comment to explain why we don't want to call
benwells
2012/10/10 00:55:21
Done (and also check widget).
|
+ if (delegate_.get()) |
+ delegate_->ViewActivationChanged(active); |
+} |
+ |
} // namespace app_list |