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

Side by Side Diff: ash/mus/accelerators/accelerator_controller_delegate_mus.cc

Issue 2276233002: ash/chromeos: Add shift-alt-p shortcut to open palette. (Closed)
Patch Set: Address comments Created 4 years, 3 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
« no previous file with comments | « ash/common/test/test_palette_delegate.cc ('k') | ash/shell/shell_delegate_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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
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
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
OLDNEW
« no previous file with comments | « ash/common/test/test_palette_delegate.cc ('k') | ash/shell/shell_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698