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 // Initial dimensions for the host window in the form "1024x768". | 14 // Initial dimensions for the host window in the form "1024x768". |
15 const char kAuraHostWindowSize[] = "aura-host-window-size"; | 15 const char kAuraHostWindowSize[] = "aura-host-window-size"; |
16 | 16 |
17 // Whether to use the full screen for aura's host window. | 17 // Whether to use the full screen for aura's host window. |
18 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen"; | 18 const char kAuraHostWindowUseFullscreen[] = "aura-host-window-use-fullscreen"; |
19 | 19 |
| 20 // The default device scale factor to apply to contents in the absence of |
| 21 // a viewport meta tag. |
| 22 const char kDefaultDeviceScaleFactor[] = "default-device-scale-factor"; |
| 23 |
20 } // namespace switches | 24 } // namespace switches |
OLD | NEW |