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_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ | 5 #ifndef UI_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ |
6 #define UI_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ | 6 #define UI_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 gfx::Size physical_size; | 33 gfx::Size physical_size; |
34 DisplayConnectionType type; | 34 DisplayConnectionType type; |
35 bool is_aspect_preserving_scaling; | 35 bool is_aspect_preserving_scaling; |
36 bool has_overscan; | 36 bool has_overscan; |
37 std::string display_name; | 37 std::string display_name; |
38 std::vector<DisplayMode_Params> modes; | 38 std::vector<DisplayMode_Params> modes; |
39 bool has_current_mode; | 39 bool has_current_mode; |
40 DisplayMode_Params current_mode; | 40 DisplayMode_Params current_mode; |
41 bool has_native_mode; | 41 bool has_native_mode; |
42 DisplayMode_Params native_mode; | 42 DisplayMode_Params native_mode; |
| 43 int64_t product_id; |
43 std::string string_representation; | 44 std::string string_representation; |
44 }; | 45 }; |
45 | 46 |
46 } // namespace ui | 47 } // namespace ui |
47 | 48 |
48 #endif // UI_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ | 49 #endif // UI_OZONE_COMMON_GPU_OZONE_GPU_MESSAGE_PARAMS_H_ |
49 | 50 |
OLD | NEW |