| Index: ui/ozone/platform/dri/hardware_display_controller.h
|
| diff --git a/ui/ozone/platform/dri/hardware_display_controller.h b/ui/ozone/platform/dri/hardware_display_controller.h
|
| index 9c6bb1296e9c7aec14d2a73282c26500ff273b62..a69cbde1bdb94dda407b673f7ece3752c1bce13c 100644
|
| --- a/ui/ozone/platform/dri/hardware_display_controller.h
|
| +++ b/ui/ozone/platform/dri/hardware_display_controller.h
|
| @@ -165,8 +165,8 @@ class HardwareDisplayController
|
| void AddCrtc(scoped_ptr<CrtcState> state);
|
| scoped_ptr<CrtcState> RemoveCrtc(uint32_t crtc);
|
| bool HasCrtc(uint32_t crtc) const;
|
| - bool HasCrtcs() const;
|
| - void RemoveMirroredCrtcs();
|
| + bool IsMirrored() const;
|
| + bool IsDisabled() const;
|
|
|
| gfx::Point origin() const { return origin_; }
|
| void set_origin(const gfx::Point& origin) { origin_ = origin; }
|
| @@ -199,6 +199,7 @@ class HardwareDisplayController
|
| ScopedVector<CrtcState> crtc_states_;
|
| gfx::Point origin_;
|
| drmModeModeInfo mode_;
|
| + bool is_disabled_;
|
| uint64_t time_of_last_flip_;
|
|
|
| // Keeps track of the number of page flips scheduled but not yet serviced (in
|
|
|