Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: ash/wm/workspace/workspace_event_handler.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/wm/workspace/workspace_event_handler.h" 5 #include "ash/wm/workspace/workspace_event_handler.h"
6 6
7 #include "ash/common/wm_shell.h"
8 #include "ash/common/wm_window.h"
9 #include "ash/wm/window_state.h" 7 #include "ash/wm/window_state.h"
10 #include "ash/wm/wm_event.h" 8 #include "ash/wm/wm_event.h"
9 #include "ash/wm_shell.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
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
OLDNEW
« no previous file with comments | « ash/wm/workspace/phantom_window_controller.cc ('k') | ash/wm/workspace/workspace_event_handler_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698