OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/shelf/overflow_bubble.h" | 5 #include "ash/shelf/overflow_bubble.h" |
6 | 6 |
7 #include "ash/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
8 #include "ash/shelf/overflow_bubble_view.h" | 8 #include "ash/shelf/overflow_bubble_view.h" |
9 #include "ash/shelf/shelf_layout_manager.h" | 9 #include "ash/shelf/shelf_layout_manager.h" |
10 #include "ash/shelf/shelf_view.h" | 10 #include "ash/shelf/shelf_view.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 void OverflowBubble::OnTouchEvent(ui::TouchEvent* event) { | 89 void OverflowBubble::OnTouchEvent(ui::TouchEvent* event) { |
90 if (event->type() == ui::ET_TOUCH_PRESSED) | 90 if (event->type() == ui::ET_TOUCH_PRESSED) |
91 ProcessPressedEvent(event); | 91 ProcessPressedEvent(event); |
92 } | 92 } |
93 | 93 |
94 void OverflowBubble::OnWidgetDestroying(views::Widget* widget) { | 94 void OverflowBubble::OnWidgetDestroying(views::Widget* widget) { |
95 DCHECK(widget == bubble_->GetWidget()); | 95 DCHECK(widget == bubble_->GetWidget()); |
96 bubble_ = NULL; | 96 bubble_ = NULL; |
97 anchor_ = NULL; | 97 anchor_ = NULL; |
98 shelf_view_ = NULL; | 98 shelf_view_ = NULL; |
99 ShelfLayoutManager::ForLauncher( | 99 ShelfLayoutManager::ForShelf( |
100 widget->GetNativeView())->shelf_widget()->launcher()->SchedulePaint(); | 100 widget->GetNativeView())->shelf_widget()->shelf()->SchedulePaint(); |
101 } | 101 } |
102 | 102 |
103 } // namespace internal | 103 } // namespace internal |
104 } // namespace ash | 104 } // namespace ash |
OLD | NEW |