| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "ui/display/display_switches.h" | 6 #include "ui/display/display_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Overrides the device scale factor for the browser UI and the contents. | 10 // Overrides the device scale factor for the browser UI and the contents. |
| 11 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; | 11 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; |
| 12 | 12 |
| 13 // Specifies the layout mode and offsets for the secondary display for |
| 14 // testing. The format is "<t|r|b|l>,<offset>" where t=TOP, r=RIGHT, |
| 15 // b=BOTTOM and L=LEFT. For example, 'r,-100' means the secondary display |
| 16 // is positioned on the right with -100 offset. (above than primary) |
| 17 const char kSecondaryDisplayLayout[] = "secondary-display-layout"; |
| 18 |
| 13 #if defined(OS_CHROMEOS) | 19 #if defined(OS_CHROMEOS) |
| 14 const char kDisableDisplayColorCalibration[] = | 20 const char kDisableDisplayColorCalibration[] = |
| 15 "disable-display-color-calibration"; | 21 "disable-display-color-calibration"; |
| 16 #endif | 22 #endif |
| 17 | 23 |
| 18 } // namespace switches | 24 } // namespace switches |
| OLD | NEW |