OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_OZONE_COMMON_CHROMEOS_DISPLAY_UTIL_H_ |
| 6 #define UI_OZONE_COMMON_CHROMEOS_DISPLAY_UTIL_H_ |
| 7 |
| 8 #include "ui/ozone/common/gpu/ozone_gpu_message_params.h" |
| 9 |
| 10 namespace ui { |
| 11 |
| 12 class DisplayMode; |
| 13 class DisplaySnapshot; |
| 14 |
| 15 DisplayMode_Params GetDisplayModeParams(const DisplayMode& mode); |
| 16 DisplaySnapshot_Params GetDisplaySnapshotParams( |
| 17 const DisplaySnapshot& display); |
| 18 |
| 19 } // namespace ui |
| 20 |
| 21 #endif // UI_OZONE_COMMON_CHROMEOS_DISPLAY_UTIL_H_ |
OLD | NEW |