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

Side by Side Diff: ash/wm/panels/panel_window_event_handler.cc

Issue 2889413002: chromeos: nukes window_state_aura (Closed)
Patch Set: merge, remove include from windows and shuffle functions for declaration Created 3 years, 7 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 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/shell_port.h" 7 #include "ash/shell_port.h"
8 #include "ash/wm/window_state.h" 8 #include "ash/wm/window_state.h"
9 #include "ash/wm/window_state_aura.h"
10 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
11 #include "ui/aura/window_delegate.h" 10 #include "ui/aura/window_delegate.h"
12 #include "ui/base/hit_test.h" 11 #include "ui/base/hit_test.h"
13 #include "ui/events/event.h" 12 #include "ui/events/event.h"
14 13
15 namespace ash { 14 namespace ash {
16 15
17 PanelWindowEventHandler::PanelWindowEventHandler() {} 16 PanelWindowEventHandler::PanelWindowEventHandler() {}
18 17
19 PanelWindowEventHandler::~PanelWindowEventHandler() {} 18 PanelWindowEventHandler::~PanelWindowEventHandler() {}
(...skipping 20 matching lines...) Expand all
40 HTCAPTION) { 39 HTCAPTION) {
41 ShellPort::Get()->RecordUserMetricsAction( 40 ShellPort::Get()->RecordUserMetricsAction(
42 UMA_PANEL_MINIMIZE_CAPTION_GESTURE); 41 UMA_PANEL_MINIMIZE_CAPTION_GESTURE);
43 wm::GetWindowState(target)->Minimize(); 42 wm::GetWindowState(target)->Minimize();
44 event->StopPropagation(); 43 event->StopPropagation();
45 return; 44 return;
46 } 45 }
47 } 46 }
48 47
49 } // namespace ash 48 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_layout_manager_unittest.cc ('k') | ash/wm/panels/panel_window_resizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698