| 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 #ifndef UI_DISPLAY_DISPLAY_CONSTANTS_H_ | 5 #ifndef UI_DISPLAY_TYPES_DISPLAY_CONSTANTS_H_ |
| 6 #define UI_DISPLAY_DISPLAY_CONSTANTS_H_ | 6 #define UI_DISPLAY_TYPES_DISPLAY_CONSTANTS_H_ |
| 7 | 7 |
| 8 namespace ui { | 8 namespace ui { |
| 9 | 9 |
| 10 // Used to describe the state of a multi-display configuration. | 10 // Used to describe the state of a multi-display configuration. |
| 11 enum MultipleDisplayState { | 11 enum MultipleDisplayState { |
| 12 MULTIPLE_DISPLAY_STATE_INVALID, | 12 MULTIPLE_DISPLAY_STATE_INVALID, |
| 13 MULTIPLE_DISPLAY_STATE_HEADLESS, | 13 MULTIPLE_DISPLAY_STATE_HEADLESS, |
| 14 MULTIPLE_DISPLAY_STATE_SINGLE, | 14 MULTIPLE_DISPLAY_STATE_SINGLE, |
| 15 MULTIPLE_DISPLAY_STATE_DUAL_MIRROR, | 15 MULTIPLE_DISPLAY_STATE_DUAL_MIRROR, |
| 16 MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED, | 16 MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 42 enum ColorCalibrationProfile { | 42 enum ColorCalibrationProfile { |
| 43 COLOR_PROFILE_STANDARD, | 43 COLOR_PROFILE_STANDARD, |
| 44 COLOR_PROFILE_DYNAMIC, | 44 COLOR_PROFILE_DYNAMIC, |
| 45 COLOR_PROFILE_MOVIE, | 45 COLOR_PROFILE_MOVIE, |
| 46 COLOR_PROFILE_READING, | 46 COLOR_PROFILE_READING, |
| 47 NUM_COLOR_PROFILES, | 47 NUM_COLOR_PROFILES, |
| 48 }; | 48 }; |
| 49 | 49 |
| 50 } // namespace ui | 50 } // namespace ui |
| 51 | 51 |
| 52 #endif // UI_DISPLAY_DISPLAY_CONSTANTS_H_ | 52 #endif // UI_DISPLAY_TYPES_DISPLAY_CONSTANTS_H_ |
| OLD | NEW |