| Index: ui/ozone/platform/drm/host/drm_device_handle.h
|
| diff --git a/ui/ozone/platform/drm/host/drm_device_handle.h b/ui/ozone/platform/drm/host/drm_device_handle.h
|
| index b360837eab6fe55e4a19c5bb83d7986be7010f89..4105e1750b3eb6e923e9097f6c53a27eefb701cf 100644
|
| --- a/ui/ozone/platform/drm/host/drm_device_handle.h
|
| +++ b/ui/ozone/platform/drm/host/drm_device_handle.h
|
| @@ -20,13 +20,15 @@ class DrmDeviceHandle {
|
|
|
| int fd() const { return file_.get(); }
|
|
|
| - bool Initialize(const base::FilePath& path);
|
| + bool Initialize(const base::FilePath& path, bool is_vgem);
|
|
|
| bool IsValid() const;
|
| base::ScopedFD PassFD();
|
| + bool IsVgem() const { return is_vgem_; }
|
|
|
| private:
|
| base::ScopedFD file_;
|
| + bool is_vgem_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DrmDeviceHandle);
|
| };
|
|
|