| 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 ui { | |
| 9 namespace switches { | 8 namespace switches { |
| 10 | 9 |
| 10 // Overrides the device scale factor for the browser UI and the contents. |
| 11 const char kForceDeviceScaleFactor[] = "force-device-scale-factor"; |
| 12 |
| 11 #if defined(OS_CHROMEOS) | 13 #if defined(OS_CHROMEOS) |
| 12 const char kDisableDisplayColorCalibration[] = | 14 const char kDisableDisplayColorCalibration[] = |
| 13 "disable-display-color-calibration"; | 15 "disable-display-color-calibration"; |
| 14 #endif | 16 #endif |
| 15 | 17 |
| 16 } // namespace switches | 18 } // namespace switches |
| 17 } // namespace ui | |
| OLD | NEW |