OLD | NEW |
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 #include "ui/aura/aura_switches.h" | 5 #include "ui/aura/aura_switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
11 // Enable the holding of mouse movements in order to throttle window resizing. | |
12 const char kAuraDisableHoldMouseMoves[] = "aura-disable-hold-mouse-moves"; | |
13 | |
14 // If set gesture events do not generate mouse events. | 11 // If set gesture events do not generate mouse events. |
15 const char kAuraDisableMouseEventsFromTouch[] = | 12 const char kAuraDisableMouseEventsFromTouch[] = |
16 "aura-disable-mouse-events-from-touch"; | 13 "aura-disable-mouse-events-from-touch"; |
17 | 14 |
18 // Initial dimensions for the host window in the form "1024x768". | 15 // Initial dimensions for the host window in the form "1024x768". |
19 const char kAuraHostWindowSize[] = "aura-host-window-size"; | 16 const char kAuraHostWindowSize[] = "aura-host-window-size"; |
20 | 17 |
21 // Whether to use the full screen for aura's host window. | 18 // Whether to use the full screen for aura's host window. |
22 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen"; | 19 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen"; |
23 | 20 |
24 } // namespace switches | 21 } // namespace switches |
OLD | NEW |