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

Side by Side Diff: ash/common/accelerators/accelerator_table.h

Issue 2352213002: Add Ctrl+Alt+H as global shortcut to toggle high contrast mode. (Closed)
Patch Set: 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
OLDNEW
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 #ifndef ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ 5 #ifndef ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_
6 #define ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ 6 #define ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 OPEN_GET_HELP, 132 OPEN_GET_HELP,
133 POWER_PRESSED, 133 POWER_PRESSED,
134 POWER_RELEASED, 134 POWER_RELEASED,
135 SHOW_IME_MENU_BUBBLE, 135 SHOW_IME_MENU_BUBBLE,
136 SUSPEND, 136 SUSPEND,
137 SHOW_STYLUS_TOOLS, 137 SHOW_STYLUS_TOOLS,
138 SWAP_PRIMARY_DISPLAY, 138 SWAP_PRIMARY_DISPLAY,
139 SWITCH_TO_NEXT_USER, 139 SWITCH_TO_NEXT_USER,
140 SWITCH_TO_PREVIOUS_USER, 140 SWITCH_TO_PREVIOUS_USER,
141 TOGGLE_CAPS_LOCK, 141 TOGGLE_CAPS_LOCK,
142 TOGGLE_HIGH_CONTRAST,
142 TOGGLE_MIRROR_MODE, 143 TOGGLE_MIRROR_MODE,
143 TOGGLE_SPOKEN_FEEDBACK, 144 TOGGLE_SPOKEN_FEEDBACK,
144 TOGGLE_WIFI, 145 TOGGLE_WIFI,
145 TOUCH_HUD_CLEAR, 146 TOUCH_HUD_CLEAR,
146 TOUCH_HUD_MODE_CHANGE, 147 TOUCH_HUD_MODE_CHANGE,
147 TOUCH_HUD_PROJECTION_TOGGLE, 148 TOUCH_HUD_PROJECTION_TOGGLE,
148 VOLUME_DOWN, 149 VOLUME_DOWN,
149 VOLUME_MUTE, 150 VOLUME_MUTE,
150 VOLUME_UP, 151 VOLUME_UP,
151 #else 152 #else
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; 260 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[];
260 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; 261 ASH_EXPORT extern const size_t kActionsNeedingWindowLength;
261 262
262 // Actions that can be performed while keeping the menu open. 263 // Actions that can be performed while keeping the menu open.
263 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[]; 264 ASH_EXPORT extern const AcceleratorAction kActionsKeepingMenuOpen[];
264 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength; 265 ASH_EXPORT extern const size_t kActionsKeepingMenuOpenLength;
265 266
266 } // namespace ash 267 } // namespace ash
267 268
268 #endif // ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_ 269 #endif // ASH_COMMON_ACCELERATORS_ACCELERATOR_TABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698