OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 ASH_DISPLAY_DISPLAY_INFO_H_ | 5 #ifndef ASH_DISPLAY_DISPLAY_INFO_H_ |
6 #define ASH_DISPLAY_DISPLAY_INFO_H_ | 6 #define ASH_DISPLAY_DISPLAY_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 bool clear_overscan_insets_; | 272 bool clear_overscan_insets_; |
273 | 273 |
274 // The list of modes supported by this display. | 274 // The list of modes supported by this display. |
275 std::vector<DisplayMode> display_modes_; | 275 std::vector<DisplayMode> display_modes_; |
276 | 276 |
277 // The current profile of the color calibration. | 277 // The current profile of the color calibration. |
278 ui::ColorCalibrationProfile color_profile_; | 278 ui::ColorCalibrationProfile color_profile_; |
279 | 279 |
280 // The list of available variations for the color calibration. | 280 // The list of available variations for the color calibration. |
281 std::vector<ui::ColorCalibrationProfile> available_color_profiles_; | 281 std::vector<ui::ColorCalibrationProfile> available_color_profiles_; |
282 | |
283 // If you add a new member, you need to update Copy(). | |
oshima
2015/01/30 18:06:38
I couldn't think of a good way either. lgtm
| |
282 }; | 284 }; |
283 | 285 |
284 } // namespace ash | 286 } // namespace ash |
285 | 287 |
286 #endif // ASH_DISPLAY_DISPLAY_INFO_H_ | 288 #endif // ASH_DISPLAY_DISPLAY_INFO_H_ |
OLD | NEW |