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