| 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/metrics/user_metrics_recorder.h" | 7 #include "ash/metrics/user_metrics_recorder.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/wm/window_state.h" | 9 #include "ash/wm/window_state.h" |
| 10 #include "ash/wm/window_state_aura.h" |
| 10 #include "ui/aura/window.h" | 11 #include "ui/aura/window.h" |
| 11 #include "ui/aura/window_delegate.h" | 12 #include "ui/aura/window_delegate.h" |
| 12 #include "ui/base/hit_test.h" | 13 #include "ui/base/hit_test.h" |
| 13 #include "ui/events/event.h" | 14 #include "ui/events/event.h" |
| 14 | 15 |
| 15 namespace ash { | 16 namespace ash { |
| 16 | 17 |
| 17 PanelWindowEventHandler::PanelWindowEventHandler() { | 18 PanelWindowEventHandler::PanelWindowEventHandler() { |
| 18 } | 19 } |
| 19 | 20 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 HTCAPTION) { | 46 HTCAPTION) { |
| 46 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( | 47 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( |
| 47 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE); | 48 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE); |
| 48 wm::GetWindowState(target)->Minimize(); | 49 wm::GetWindowState(target)->Minimize(); |
| 49 event->StopPropagation(); | 50 event->StopPropagation(); |
| 50 return; | 51 return; |
| 51 } | 52 } |
| 52 } | 53 } |
| 53 | 54 |
| 54 } // namespace ash | 55 } // namespace ash |
| OLD | NEW |