| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/common/wm/workspace/workspace_event_handler.h" | 5 #include "ash/wm/workspace/workspace_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/wm_event.h" | 8 #include "ash/wm/wm_event.h" |
| 9 #include "ash/common/wm_shell.h" | 9 #include "ash/wm_shell.h" |
| 10 #include "ash/common/wm_window.h" | 10 #include "ash/wm_window.h" |
| 11 #include "ui/base/hit_test.h" | 11 #include "ui/base/hit_test.h" |
| 12 #include "ui/events/event.h" | 12 #include "ui/events/event.h" |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 | 15 |
| 16 WorkspaceEventHandler::WorkspaceEventHandler() : click_component_(HTNOWHERE) {} | 16 WorkspaceEventHandler::WorkspaceEventHandler() : click_component_(HTNOWHERE) {} |
| 17 | 17 |
| 18 WorkspaceEventHandler::~WorkspaceEventHandler() {} | 18 WorkspaceEventHandler::~WorkspaceEventHandler() {} |
| 19 | 19 |
| 20 void WorkspaceEventHandler::OnMouseEvent(ui::MouseEvent* event, | 20 void WorkspaceEventHandler::OnMouseEvent(ui::MouseEvent* event, |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 WmShell::Get()->RecordUserMetricsAction( | 110 WmShell::Get()->RecordUserMetricsAction( |
| 111 UMA_TOGGLE_SINGLE_AXIS_MAXIMIZE_BORDER_CLICK); | 111 UMA_TOGGLE_SINGLE_AXIS_MAXIMIZE_BORDER_CLICK); |
| 112 const wm::WMEvent wm_event(wm::WM_EVENT_TOGGLE_HORIZONTAL_MAXIMIZE); | 112 const wm::WMEvent wm_event(wm::WM_EVENT_TOGGLE_HORIZONTAL_MAXIMIZE); |
| 113 target_state->OnWMEvent(&wm_event); | 113 target_state->OnWMEvent(&wm_event); |
| 114 event->StopPropagation(); | 114 event->StopPropagation(); |
| 115 } | 115 } |
| 116 } | 116 } |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace ash | 119 } // namespace ash |
| OLD | NEW |