| OLD | NEW |
| 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/accelerators/accelerator_controller_delegate_aura.h" | 5 #include "ash/accelerators/accelerator_controller_delegate_aura.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "ash/shelf/wm_shelf.h" | 22 #include "ash/shelf/wm_shelf.h" |
| 23 #include "ash/shell.h" | 23 #include "ash/shell.h" |
| 24 #include "ash/system/system_notifier.h" | 24 #include "ash/system/system_notifier.h" |
| 25 #include "ash/touch/touch_hud_debug.h" | 25 #include "ash/touch/touch_hud_debug.h" |
| 26 #include "ash/utility/screenshot_controller.h" | 26 #include "ash/utility/screenshot_controller.h" |
| 27 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | 27 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
| 28 #include "ash/wm/power_button_controller.h" | 28 #include "ash/wm/power_button_controller.h" |
| 29 #include "ash/wm/window_state.h" | 29 #include "ash/wm/window_state.h" |
| 30 #include "ash/wm/window_state_aura.h" | 30 #include "ash/wm/window_state_aura.h" |
| 31 #include "ash/wm/wm_event.h" | 31 #include "ash/wm/wm_event.h" |
| 32 #include "ash/wm_shell.h" | |
| 33 #include "base/memory/ptr_util.h" | 32 #include "base/memory/ptr_util.h" |
| 34 #include "base/metrics/histogram_macros.h" | 33 #include "base/metrics/histogram_macros.h" |
| 35 #include "base/metrics/user_metrics.h" | 34 #include "base/metrics/user_metrics.h" |
| 36 #include "base/sys_info.h" | 35 #include "base/sys_info.h" |
| 37 #include "third_party/skia/include/core/SkColor.h" | 36 #include "third_party/skia/include/core/SkColor.h" |
| 38 #include "ui/base/accelerators/accelerator.h" | 37 #include "ui/base/accelerators/accelerator.h" |
| 39 #include "ui/display/manager/display_manager.h" | 38 #include "ui/display/manager/display_manager.h" |
| 40 #include "ui/display/screen.h" | 39 #include "ui/display/screen.h" |
| 41 #include "ui/events/event.h" | 40 #include "ui/events/event.h" |
| 42 #include "ui/events/keycodes/keyboard_codes.h" | 41 #include "ui/events/keycodes/keyboard_codes.h" |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 break; | 344 break; |
| 346 case UNPIN: | 345 case UNPIN: |
| 347 accelerators::Unpin(); | 346 accelerators::Unpin(); |
| 348 break; | 347 break; |
| 349 default: | 348 default: |
| 350 break; | 349 break; |
| 351 } | 350 } |
| 352 } | 351 } |
| 353 | 352 |
| 354 } // namespace ash | 353 } // namespace ash |
| OLD | NEW |