summaryrefslogtreecommitdiffstats
path: root/chromium/ui/display/display_util.h
blob: 0f7902409b6b54afe7505edab9d963d40214f82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_DISPLAY_DISPLAY_UTIL_H_
#define UI_DISPLAY_DISPLAY_UTIL_H_

#include "ui/display/display.h"
#include "ui/display/display_export.h"
#include "ui/display/screen_info.h"
#include "ui/gfx/native_widget_types.h"

namespace display {

class DISPLAY_EXPORT DisplayUtil {
 public:
  static void DisplayToScreenInfo(display::ScreenInfo* screen_info,
                                  const display::Display& display);

  static void GetNativeViewScreenInfo(display::ScreenInfo* screen_info,
                                      gfx::NativeView native_view);

  static void GetDefaultScreenInfo(display::ScreenInfo* screen_info);

  // Compute the orientation type of the display assuming it is a mobile device.
  static display::mojom::ScreenOrientation GetOrientationTypeForMobile(
      const display::Display& display);

  // Compute the orientation type of the display assuming it is a desktop.
  static display::mojom::ScreenOrientation GetOrientationTypeForDesktop(
      const display::Display& display);

  // Report audio formats supported (based on display EDID).
  static uint32_t GetAudioFormats();
};

}  // namespace display

#endif  // UI_DISPLAY_DISPLAY_UTIL_H_