| Index: ui/ozone/platform/dri/display_snapshot_dri.h
|
| diff --git a/ui/ozone/platform/dri/display_snapshot_dri.h b/ui/ozone/platform/dri/display_snapshot_dri.h
|
| index 0a7052bf1e1e58d54ff0d009644d1c423d7a2c7c..2ba799034494b3e55cbe893b92fff0e0ec1396fb 100644
|
| --- a/ui/ozone/platform/dri/display_snapshot_dri.h
|
| +++ b/ui/ozone/platform/dri/display_snapshot_dri.h
|
| @@ -11,17 +11,17 @@
|
|
|
| namespace ui {
|
|
|
| -class DriWrapper;
|
| +class DrmDevice;
|
|
|
| class DisplaySnapshotDri : public DisplaySnapshot {
|
| public:
|
| - DisplaySnapshotDri(const scoped_refptr<DriWrapper>& drm,
|
| + DisplaySnapshotDri(const scoped_refptr<DrmDevice>& drm,
|
| drmModeConnector* connector,
|
| drmModeCrtc* crtc,
|
| uint32_t index);
|
| ~DisplaySnapshotDri() override;
|
|
|
| - scoped_refptr<DriWrapper> drm() const { return drm_; }
|
| + scoped_refptr<DrmDevice> drm() const { return drm_; }
|
| // Native properties of a display used by the DRI implementation in
|
| // configuring this display.
|
| uint32_t connector() const { return connector_; }
|
| @@ -32,7 +32,7 @@ class DisplaySnapshotDri : public DisplaySnapshot {
|
| std::string ToString() const override;
|
|
|
| private:
|
| - scoped_refptr<DriWrapper> drm_;
|
| + scoped_refptr<DrmDevice> drm_;
|
| uint32_t connector_;
|
| uint32_t crtc_;
|
| ScopedDrmPropertyPtr dpms_property_;
|
|
|