| 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/mus/accelerators/accelerator_controller_delegate_mus.h" | 5 #include "ash/mus/accelerators/accelerator_controller_delegate_mus.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace ash { | 9 namespace ash { |
| 10 namespace mus { | 10 namespace mus { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 case LAUNCH_APP_1: | 31 case LAUNCH_APP_1: |
| 32 case LAUNCH_APP_2: | 32 case LAUNCH_APP_2: |
| 33 case LAUNCH_APP_3: | 33 case LAUNCH_APP_3: |
| 34 case LAUNCH_APP_4: | 34 case LAUNCH_APP_4: |
| 35 case LAUNCH_APP_5: | 35 case LAUNCH_APP_5: |
| 36 case LAUNCH_APP_6: | 36 case LAUNCH_APP_6: |
| 37 case LAUNCH_APP_7: | 37 case LAUNCH_APP_7: |
| 38 case LAUNCH_LAST_APP: | 38 case LAUNCH_LAST_APP: |
| 39 case MAGNIFY_SCREEN_ZOOM_IN: | 39 case MAGNIFY_SCREEN_ZOOM_IN: |
| 40 case MAGNIFY_SCREEN_ZOOM_OUT: | 40 case MAGNIFY_SCREEN_ZOOM_OUT: |
| 41 case NEW_INCOGNITO_WINDOW: | |
| 42 case NEW_TAB: | |
| 43 case NEW_WINDOW: | |
| 44 case OPEN_FEEDBACK_PAGE: | |
| 45 case RESTORE_TAB: | |
| 46 case ROTATE_SCREEN: | 41 case ROTATE_SCREEN: |
| 47 case ROTATE_WINDOW: | 42 case ROTATE_WINDOW: |
| 48 case SCALE_UI_DOWN: | 43 case SCALE_UI_DOWN: |
| 49 case SCALE_UI_RESET: | 44 case SCALE_UI_RESET: |
| 50 case SCALE_UI_UP: | 45 case SCALE_UI_UP: |
| 51 case SHOW_KEYBOARD_OVERLAY: | |
| 52 case SHOW_MESSAGE_CENTER_BUBBLE: | 46 case SHOW_MESSAGE_CENTER_BUBBLE: |
| 53 case SHOW_SYSTEM_TRAY_BUBBLE: | 47 case SHOW_SYSTEM_TRAY_BUBBLE: |
| 54 case SHOW_TASK_MANAGER: | |
| 55 case TAKE_PARTIAL_SCREENSHOT: | 48 case TAKE_PARTIAL_SCREENSHOT: |
| 56 case TAKE_SCREENSHOT: | 49 case TAKE_SCREENSHOT: |
| 57 case TAKE_WINDOW_SCREENSHOT: | 50 case TAKE_WINDOW_SCREENSHOT: |
| 58 case TOGGLE_APP_LIST: | 51 case TOGGLE_APP_LIST: |
| 59 case UNPIN: | 52 case UNPIN: |
| 60 NOTIMPLEMENTED(); | 53 NOTIMPLEMENTED(); |
| 61 return false; | 54 return false; |
| 62 | 55 |
| 63 #if defined(OS_CHROMEOS) | 56 #if defined(OS_CHROMEOS) |
| 64 case DEBUG_ADD_REMOVE_DISPLAY: | 57 case DEBUG_ADD_REMOVE_DISPLAY: |
| 65 case DEBUG_TOGGLE_UNIFIED_DESKTOP: | 58 case DEBUG_TOGGLE_UNIFIED_DESKTOP: |
| 66 case DISABLE_GPU_WATCHDOG: | 59 case DISABLE_GPU_WATCHDOG: |
| 67 case LOCK_PRESSED: | 60 case LOCK_PRESSED: |
| 68 case LOCK_RELEASED: | 61 case LOCK_RELEASED: |
| 69 case OPEN_CROSH: | |
| 70 case OPEN_FILE_MANAGER: | |
| 71 case OPEN_GET_HELP: | |
| 72 case POWER_PRESSED: | 62 case POWER_PRESSED: |
| 73 case POWER_RELEASED: | 63 case POWER_RELEASED: |
| 74 case SWAP_PRIMARY_DISPLAY: | 64 case SWAP_PRIMARY_DISPLAY: |
| 75 case TOGGLE_MIRROR_MODE: | 65 case TOGGLE_MIRROR_MODE: |
| 76 case TOUCH_HUD_CLEAR: | 66 case TOUCH_HUD_CLEAR: |
| 77 case TOUCH_HUD_MODE_CHANGE: | 67 case TOUCH_HUD_MODE_CHANGE: |
| 78 case TOUCH_HUD_PROJECTION_TOGGLE: | 68 case TOUCH_HUD_PROJECTION_TOGGLE: |
| 79 NOTIMPLEMENTED(); | 69 NOTIMPLEMENTED(); |
| 80 return false; | 70 return false; |
| 81 #endif | 71 #endif |
| (...skipping 22 matching lines...) Expand all Loading... |
| 104 const char* const notification_id, | 94 const char* const notification_id, |
| 105 int message_id, | 95 int message_id, |
| 106 int old_shortcut_id, | 96 int old_shortcut_id, |
| 107 int new_shortcut_id) { | 97 int new_shortcut_id) { |
| 108 // TODO: http://crbug.com/630316. | 98 // TODO: http://crbug.com/630316. |
| 109 NOTIMPLEMENTED(); | 99 NOTIMPLEMENTED(); |
| 110 } | 100 } |
| 111 | 101 |
| 112 } // namespace mus | 102 } // namespace mus |
| 113 } // namespace ash | 103 } // namespace ash |
| OLD | NEW |