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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
53 return false; | 53 return false; |
54 | 54 |
55 #if defined(OS_CHROMEOS) | 55 #if defined(OS_CHROMEOS) |
56 case DEBUG_ADD_REMOVE_DISPLAY: | 56 case DEBUG_ADD_REMOVE_DISPLAY: |
57 case DEBUG_TOGGLE_UNIFIED_DESKTOP: | 57 case DEBUG_TOGGLE_UNIFIED_DESKTOP: |
58 case DISABLE_GPU_WATCHDOG: | 58 case DISABLE_GPU_WATCHDOG: |
59 case LOCK_PRESSED: | 59 case LOCK_PRESSED: |
60 case LOCK_RELEASED: | 60 case LOCK_RELEASED: |
61 case POWER_PRESSED: | 61 case POWER_PRESSED: |
62 case POWER_RELEASED: | 62 case POWER_RELEASED: |
63 case SHOW_STYLUS_TOOLS: | |
James Cook
2016/08/26 15:49:25
nit: Remove this one. Per the comment above it's o
jdufault
2016/08/26 18:49:10
Ah, there is a already comment at the top of the s
| |
63 case SWAP_PRIMARY_DISPLAY: | 64 case SWAP_PRIMARY_DISPLAY: |
64 case TOGGLE_MIRROR_MODE: | 65 case TOGGLE_MIRROR_MODE: |
65 case TOUCH_HUD_CLEAR: | 66 case TOUCH_HUD_CLEAR: |
66 case TOUCH_HUD_MODE_CHANGE: | 67 case TOUCH_HUD_MODE_CHANGE: |
67 case TOUCH_HUD_PROJECTION_TOGGLE: | 68 case TOUCH_HUD_PROJECTION_TOGGLE: |
68 NOTIMPLEMENTED(); | 69 NOTIMPLEMENTED(); |
69 return false; | 70 return false; |
70 #endif | 71 #endif |
71 | 72 |
72 default: | 73 default: |
(...skipping 20 matching lines...) Expand all Loading... | |
93 const char* const notification_id, | 94 const char* const notification_id, |
94 int message_id, | 95 int message_id, |
95 int old_shortcut_id, | 96 int old_shortcut_id, |
96 int new_shortcut_id) { | 97 int new_shortcut_id) { |
97 // TODO: http://crbug.com/630316. | 98 // TODO: http://crbug.com/630316. |
98 NOTIMPLEMENTED(); | 99 NOTIMPLEMENTED(); |
99 } | 100 } |
100 | 101 |
101 } // namespace mus | 102 } // namespace mus |
102 } // namespace ash | 103 } // namespace ash |
OLD | NEW |