| 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/accelerators/accelerator_controller.h" | 5 #include "ash/accelerators/accelerator_controller.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <iostream> | 9 #include <iostream> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "ash/shell_window_ids.h" | 34 #include "ash/shell_window_ids.h" |
| 35 #include "ash/system/brightness/brightness_control_delegate.h" | 35 #include "ash/system/brightness/brightness_control_delegate.h" |
| 36 #include "ash/system/keyboard_brightness/keyboard_brightness_control_delegate.h" | 36 #include "ash/system/keyboard_brightness/keyboard_brightness_control_delegate.h" |
| 37 #include "ash/system/status_area_widget.h" | 37 #include "ash/system/status_area_widget.h" |
| 38 #include "ash/system/tray/system_tray.h" | 38 #include "ash/system/tray/system_tray.h" |
| 39 #include "ash/system/tray/system_tray_delegate.h" | 39 #include "ash/system/tray/system_tray_delegate.h" |
| 40 #include "ash/system/tray/system_tray_notifier.h" | 40 #include "ash/system/tray/system_tray_notifier.h" |
| 41 #include "ash/system/web_notification/web_notification_tray.h" | 41 #include "ash/system/web_notification/web_notification_tray.h" |
| 42 #include "ash/touch/touch_hud_debug.h" | 42 #include "ash/touch/touch_hud_debug.h" |
| 43 #include "ash/volume_control_delegate.h" | 43 #include "ash/volume_control_delegate.h" |
| 44 #include "ash/wm/overview/window_selector_controller.h" |
| 44 #include "ash/wm/partial_screenshot_view.h" | 45 #include "ash/wm/partial_screenshot_view.h" |
| 45 #include "ash/wm/power_button_controller.h" | 46 #include "ash/wm/power_button_controller.h" |
| 46 #include "ash/wm/property_util.h" | 47 #include "ash/wm/property_util.h" |
| 47 #include "ash/wm/window_cycle_controller.h" | 48 #include "ash/wm/window_cycle_controller.h" |
| 48 #include "ash/wm/window_selector_controller.h" | |
| 49 #include "ash/wm/window_util.h" | 49 #include "ash/wm/window_util.h" |
| 50 #include "ash/wm/workspace/snap_sizer.h" | 50 #include "ash/wm/workspace/snap_sizer.h" |
| 51 #include "base/bind.h" | 51 #include "base/bind.h" |
| 52 #include "base/command_line.h" | 52 #include "base/command_line.h" |
| 53 #include "content/public/browser/gpu_data_manager.h" | 53 #include "content/public/browser/gpu_data_manager.h" |
| 54 #include "ui/aura/env.h" | 54 #include "ui/aura/env.h" |
| 55 #include "ui/aura/root_window.h" | 55 #include "ui/aura/root_window.h" |
| 56 #include "ui/base/accelerators/accelerator.h" | 56 #include "ui/base/accelerators/accelerator.h" |
| 57 #include "ui/base/accelerators/accelerator_manager.h" | 57 #include "ui/base/accelerators/accelerator_manager.h" |
| 58 #include "ui/base/events/event.h" | 58 #include "ui/base/events/event.h" |
| (...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 997 keyboard_brightness_control_delegate) { | 997 keyboard_brightness_control_delegate) { |
| 998 keyboard_brightness_control_delegate_ = | 998 keyboard_brightness_control_delegate_ = |
| 999 keyboard_brightness_control_delegate.Pass(); | 999 keyboard_brightness_control_delegate.Pass(); |
| 1000 } | 1000 } |
| 1001 | 1001 |
| 1002 bool AcceleratorController::CanHandleAccelerators() const { | 1002 bool AcceleratorController::CanHandleAccelerators() const { |
| 1003 return true; | 1003 return true; |
| 1004 } | 1004 } |
| 1005 | 1005 |
| 1006 } // namespace ash | 1006 } // namespace ash |
| OLD | NEW |