Bug 1646817 - Support DocumentChannel process switching in sidebars and popups r...
[gecko.git] / widget / cocoa / GfxInfo.h
blobe798f35522b45c07cfccec9a8d8434252ff9c364
1 /* vim: se cin sw=2 ts=2 et : */
2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef __mozilla_widget_GfxInfo_h__
9 #define __mozilla_widget_GfxInfo_h__
11 #include "GfxInfoBase.h"
13 #include "nsString.h"
15 namespace mozilla {
16 namespace widget {
18 class GfxInfo : public GfxInfoBase {
19 public:
20 GfxInfo();
21 // We only declare the subset of nsIGfxInfo that we actually implement. The
22 // rest is brought forward from GfxInfoBase.
23 NS_IMETHOD GetD2DEnabled(bool* aD2DEnabled) override;
24 NS_IMETHOD GetDWriteEnabled(bool* aDWriteEnabled) override;
25 NS_IMETHOD GetDWriteVersion(nsAString& aDwriteVersion) override;
26 NS_IMETHOD GetEmbeddedInFirefoxReality(
27 bool* aEmbeddedInFirefoxReality) override;
28 NS_IMETHOD GetHasBattery(bool* aHasBattery) override;
29 NS_IMETHOD GetWindowProtocol(nsAString& aWindowProtocol) override;
30 NS_IMETHOD GetDesktopEnvironment(nsAString& aDesktopEnvironment) override;
31 NS_IMETHOD GetCleartypeParameters(nsAString& aCleartypeParams) override;
32 NS_IMETHOD GetAdapterDescription(nsAString& aAdapterDescription) override;
33 NS_IMETHOD GetAdapterDriver(nsAString& aAdapterDriver) override;
34 NS_IMETHOD GetAdapterVendorID(nsAString& aAdapterVendorID) override;
35 NS_IMETHOD GetAdapterDeviceID(nsAString& aAdapterDeviceID) override;
36 NS_IMETHOD GetAdapterSubsysID(nsAString& aAdapterSubsysID) override;
37 NS_IMETHOD GetAdapterRAM(uint32_t* aAdapterRAM) override;
38 NS_IMETHOD GetAdapterDriverVendor(nsAString& aAdapterDriverVendor) override;
39 NS_IMETHOD GetAdapterDriverVersion(nsAString& aAdapterDriverVersion) override;
40 NS_IMETHOD GetAdapterDriverDate(nsAString& aAdapterDriverDate) override;
41 NS_IMETHOD GetAdapterDescription2(nsAString& aAdapterDescription) override;
42 NS_IMETHOD GetAdapterDriver2(nsAString& aAdapterDriver) override;
43 NS_IMETHOD GetAdapterVendorID2(nsAString& aAdapterVendorID) override;
44 NS_IMETHOD GetAdapterDeviceID2(nsAString& aAdapterDeviceID) override;
45 NS_IMETHOD GetAdapterSubsysID2(nsAString& aAdapterSubsysID) override;
46 NS_IMETHOD GetAdapterRAM2(uint32_t* aAdapterRAM) override;
47 NS_IMETHOD GetAdapterDriverVendor2(nsAString& aAdapterDriverVendor) override;
48 NS_IMETHOD GetAdapterDriverVersion2(
49 nsAString& aAdapterDriverVersion) override;
50 NS_IMETHOD GetAdapterDriverDate2(nsAString& aAdapterDriverDate) override;
51 NS_IMETHOD GetIsGPU2Active(bool* aIsGPU2Active) override;
52 NS_IMETHOD GetDisplayInfo(nsTArray<nsString>& aDisplayInfo) override;
53 NS_IMETHOD GetDisplayWidth(nsTArray<uint32_t>& aDisplayWidth) override;
54 NS_IMETHOD GetDisplayHeight(nsTArray<uint32_t>& aDisplayHeight) override;
56 using GfxInfoBase::GetFeatureStatus;
57 using GfxInfoBase::GetFeatureSuggestedDriverVersion;
59 virtual nsresult Init() override;
61 #ifdef DEBUG
62 NS_DECL_ISUPPORTS_INHERITED
63 NS_DECL_NSIGFXINFODEBUG
64 #endif
66 virtual uint32_t OperatingSystemVersion() override { return mOSXVersion; }
68 nsresult FindMonitors(JSContext* cx, JS::HandleObject array) override;
70 protected:
71 virtual ~GfxInfo() {}
73 virtual nsresult GetFeatureStatusImpl(
74 int32_t aFeature, int32_t* aStatus, nsAString& aSuggestedDriverVersion,
75 const nsTArray<GfxDriverInfo>& aDriverInfo, nsACString& aFailureId,
76 OperatingSystem* aOS = nullptr) override;
77 virtual const nsTArray<GfxDriverInfo>& GetGfxDriverInfo() override;
79 private:
80 void GetDeviceInfo();
81 void GetSelectedCityInfo();
82 void AddCrashReportAnnotations();
84 uint32_t mNumGPUsDetected;
86 uint32_t mAdapterRAM[2];
87 nsString mDeviceID[2];
88 nsString mDriverVersion[2];
89 nsString mDriverDate[2];
90 nsString mDeviceKey[2];
92 nsString mAdapterVendorID[2];
93 nsString mAdapterDeviceID[2];
95 uint32_t mOSXVersion;
98 } // namespace widget
99 } // namespace mozilla
101 #endif /* __mozilla_widget_GfxInfo_h__ */