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

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

Issue 12096027: Adds an ash global shortcut key for message center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
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_ACCELERATORS_ACCELERATOR_TABLE_H_ 5 #ifndef ASH_ACCELERATORS_ACCELERATOR_TABLE_H_
6 #define ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ 6 #define ASH_ACCELERATORS_ACCELERATOR_TABLE_H_
7 7
8 #include "ash/ash_export.h" 8 #include "ash/ash_export.h"
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "ui/base/events/event_constants.h" 10 #include "ui/base/events/event_constants.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 SELECT_WIN_1, 52 SELECT_WIN_1,
53 SELECT_WIN_2, 53 SELECT_WIN_2,
54 SELECT_WIN_3, 54 SELECT_WIN_3,
55 SELECT_WIN_4, 55 SELECT_WIN_4,
56 SELECT_WIN_5, 56 SELECT_WIN_5,
57 SELECT_WIN_6, 57 SELECT_WIN_6,
58 SELECT_WIN_7, 58 SELECT_WIN_7,
59 SHOW_KEYBOARD_OVERLAY, 59 SHOW_KEYBOARD_OVERLAY,
60 SHOW_OAK, 60 SHOW_OAK,
61 SHOW_SYSTEM_TRAY_BUBBLE, 61 SHOW_SYSTEM_TRAY_BUBBLE,
62 TOGGLE_MESSAGE_CENTER_BUBBLE,
Daniel Erat 2013/01/28 23:37:29 nit: please keep this list alphabetized (see comme
Jun Mukai 2013/01/28 23:40:09 Done.
62 SHOW_TASK_MANAGER, 63 SHOW_TASK_MANAGER,
63 SWAP_PRIMARY_DISPLAY, 64 SWAP_PRIMARY_DISPLAY,
64 SWITCH_IME, // Switch to another IME depending on the accelerator. 65 SWITCH_IME, // Switch to another IME depending on the accelerator.
65 TAKE_PARTIAL_SCREENSHOT, 66 TAKE_PARTIAL_SCREENSHOT,
66 TAKE_SCREENSHOT, 67 TAKE_SCREENSHOT,
67 TOGGLE_APP_LIST, 68 TOGGLE_APP_LIST,
68 TOGGLE_CAPS_LOCK, 69 TOGGLE_CAPS_LOCK,
69 TOGGLE_CAPS_LOCK_BY_ALT_LWIN, 70 TOGGLE_CAPS_LOCK_BY_ALT_LWIN,
70 TOGGLE_DESKTOP_BACKGROUND_MODE, 71 TOGGLE_DESKTOP_BACKGROUND_MODE,
71 TOGGLE_MAXIMIZED, 72 TOGGLE_MAXIMIZED,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 143
143 // Actions which will not be repeated while holding an accelerator key. 144 // Actions which will not be repeated while holding an accelerator key.
144 ASH_EXPORT extern const AcceleratorAction kNonrepeatableActions[]; 145 ASH_EXPORT extern const AcceleratorAction kNonrepeatableActions[];
145 146
146 // The number of elements in kNonrepeatableActions. 147 // The number of elements in kNonrepeatableActions.
147 ASH_EXPORT extern const size_t kNonrepeatableActionsLength; 148 ASH_EXPORT extern const size_t kNonrepeatableActionsLength;
148 149
149 } // namespace ash 150 } // namespace ash
150 151
151 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ 152 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698