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

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

Issue 1022333002: Initial CL for Data Saver (Flywheel) prompt when cellular network detected (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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_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/events/event_constants.h" 10 #include "ui/events/event_constants.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ACCESSIBLE_FOCUS_PREVIOUS, 55 ACCESSIBLE_FOCUS_PREVIOUS,
56 CYCLE_BACKWARD_MRU, 56 CYCLE_BACKWARD_MRU,
57 CYCLE_FORWARD_MRU, 57 CYCLE_FORWARD_MRU,
58 DEBUG_PRINT_LAYER_HIERARCHY, 58 DEBUG_PRINT_LAYER_HIERARCHY,
59 DEBUG_PRINT_VIEW_HIERARCHY, 59 DEBUG_PRINT_VIEW_HIERARCHY,
60 DEBUG_PRINT_WINDOW_HIERARCHY, 60 DEBUG_PRINT_WINDOW_HIERARCHY,
61 DEBUG_TOGGLE_ROOT_WINDOW_FULL_SCREEN, 61 DEBUG_TOGGLE_ROOT_WINDOW_FULL_SCREEN,
62 DEBUG_TOGGLE_DESKTOP_BACKGROUND_MODE, 62 DEBUG_TOGGLE_DESKTOP_BACKGROUND_MODE,
63 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR, 63 DEBUG_TOGGLE_DEVICE_SCALE_FACTOR,
64 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS, 64 DEBUG_TOGGLE_SHOW_DEBUG_BORDERS,
65 DEBUG_TOGGLE_SHOW_DATASAVER_PROMPT,
Daniel Erat 2015/03/23 03:49:20 fix alphabetization
Greg Levin 2015/03/24 20:35:32 Done.
65 DEBUG_TOGGLE_SHOW_FPS_COUNTER, 66 DEBUG_TOGGLE_SHOW_FPS_COUNTER,
66 DEBUG_TOGGLE_SHOW_PAINT_RECTS, 67 DEBUG_TOGGLE_SHOW_PAINT_RECTS,
67 EXIT, 68 EXIT,
68 FOCUS_NEXT_PANE, 69 FOCUS_NEXT_PANE,
69 FOCUS_PREVIOUS_PANE, 70 FOCUS_PREVIOUS_PANE,
70 FOCUS_SHELF, 71 FOCUS_SHELF,
71 LAUNCH_APP_0, 72 LAUNCH_APP_0,
72 LAUNCH_APP_1, 73 LAUNCH_APP_1,
73 LAUNCH_APP_2, 74 LAUNCH_APP_2,
74 LAUNCH_APP_3, 75 LAUNCH_APP_3,
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[]; 194 ASH_EXPORT extern const AcceleratorAction kActionsAllowedInAppMode[];
194 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength; 195 ASH_EXPORT extern const size_t kActionsAllowedInAppModeLength;
195 196
196 // Actions that require at least 1 window. 197 // Actions that require at least 1 window.
197 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[]; 198 ASH_EXPORT extern const AcceleratorAction kActionsNeedingWindow[];
198 ASH_EXPORT extern const size_t kActionsNeedingWindowLength; 199 ASH_EXPORT extern const size_t kActionsNeedingWindowLength;
199 200
200 } // namespace ash 201 } // namespace ash
201 202
202 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_ 203 #endif // ASH_ACCELERATORS_ACCELERATOR_TABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698