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/wm/panels/panel_window_event_handler.h" | 5 #include "ash/wm/panels/panel_window_event_handler.h" |
6 | 6 |
7 #include "ash/common/wm/window_state.h" | 7 #include "ash/wm/window_state.h" |
8 #include "ash/common/wm_shell.h" | |
9 #include "ash/wm/window_state_aura.h" | 8 #include "ash/wm/window_state_aura.h" |
| 9 #include "ash/wm_shell.h" |
10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
11 #include "ui/aura/window_delegate.h" | 11 #include "ui/aura/window_delegate.h" |
12 #include "ui/base/hit_test.h" | 12 #include "ui/base/hit_test.h" |
13 #include "ui/events/event.h" | 13 #include "ui/events/event.h" |
14 | 14 |
15 namespace ash { | 15 namespace ash { |
16 | 16 |
17 PanelWindowEventHandler::PanelWindowEventHandler() {} | 17 PanelWindowEventHandler::PanelWindowEventHandler() {} |
18 | 18 |
19 PanelWindowEventHandler::~PanelWindowEventHandler() {} | 19 PanelWindowEventHandler::~PanelWindowEventHandler() {} |
(...skipping 19 matching lines...) Expand all Loading... |
39 target->delegate()->GetNonClientComponent(event->location()) == | 39 target->delegate()->GetNonClientComponent(event->location()) == |
40 HTCAPTION) { | 40 HTCAPTION) { |
41 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_GESTURE); | 41 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_GESTURE); |
42 wm::GetWindowState(target)->Minimize(); | 42 wm::GetWindowState(target)->Minimize(); |
43 event->StopPropagation(); | 43 event->StopPropagation(); |
44 return; | 44 return; |
45 } | 45 } |
46 } | 46 } |
47 | 47 |
48 } // namespace ash | 48 } // namespace ash |
OLD | NEW |