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

Side by Side Diff: ash/common/wm/maximize_mode/maximize_mode_event_handler.cc

Issue 2761063002: Move more from WmShell to Shell (Closed)
Patch Set: cleanup 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/maximize_mode/maximize_mode_event_handler.h" 5 #include "ash/common/wm/maximize_mode/maximize_mode_event_handler.h"
6 6
7 #include "ash/common/session/session_state_delegate.h" 7 #include "ash/common/session/session_state_delegate.h"
8 #include "ash/common/system/tray/system_tray_delegate.h" 8 #include "ash/common/system/tray/system_tray_delegate.h"
9 #include "ash/common/wm/window_state.h" 9 #include "ash/common/wm/window_state.h"
10 #include "ash/common/wm/wm_event.h" 10 #include "ash/common/wm/wm_event.h"
11 #include "ash/common/wm_shell.h" 11 #include "ash/common/wm_shell.h"
12 #include "ash/common/wm_window.h" 12 #include "ash/common/wm_window.h"
13 #include "ash/shell.h"
13 #include "ui/events/event.h" 14 #include "ui/events/event.h"
14 15
15 namespace ash { 16 namespace ash {
16 namespace wm { 17 namespace wm {
17 namespace { 18 namespace {
18 19
19 // The height of the area in which a touch operation leads to exiting the 20 // The height of the area in which a touch operation leads to exiting the
20 // full screen mode. 21 // full screen mode.
21 const int kLeaveFullScreenAreaHeightInPixel = 2; 22 const int kLeaveFullScreenAreaHeightInPixel = 2;
22 23
(...skipping 26 matching lines...) Expand all
49 50
50 // Test that the touch happened in the top or bottom lines. 51 // Test that the touch happened in the top or bottom lines.
51 int y = event.y(); 52 int y = event.y();
52 if (y >= kLeaveFullScreenAreaHeightInPixel && 53 if (y >= kLeaveFullScreenAreaHeightInPixel &&
53 y < (window->GetBounds().height() - kLeaveFullScreenAreaHeightInPixel)) { 54 y < (window->GetBounds().height() - kLeaveFullScreenAreaHeightInPixel)) {
54 return false; 55 return false;
55 } 56 }
56 57
57 // Do not exit fullscreen in kiosk mode. 58 // Do not exit fullscreen in kiosk mode.
58 SystemTrayDelegate* system_tray_delegate = 59 SystemTrayDelegate* system_tray_delegate =
59 WmShell::Get()->system_tray_delegate(); 60 Shell::Get()->system_tray_delegate();
60 if (system_tray_delegate->GetUserLoginStatus() == LoginStatus::KIOSK_APP || 61 if (system_tray_delegate->GetUserLoginStatus() == LoginStatus::KIOSK_APP ||
61 system_tray_delegate->GetUserLoginStatus() == 62 system_tray_delegate->GetUserLoginStatus() ==
62 LoginStatus::ARC_KIOSK_APP) { 63 LoginStatus::ARC_KIOSK_APP) {
63 return false; 64 return false;
64 } 65 }
65 66
66 WMEvent toggle_fullscreen(WM_EVENT_TOGGLE_FULLSCREEN); 67 WMEvent toggle_fullscreen(WM_EVENT_TOGGLE_FULLSCREEN);
67 window->GetWindowState()->OnWMEvent(&toggle_fullscreen); 68 window->GetWindowState()->OnWMEvent(&toggle_fullscreen);
68 return true; 69 return true;
69 } 70 }
70 71
71 } // namespace wm 72 } // namespace wm
72 } // namespace ash 73 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698