| Index: ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
|
| diff --git a/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc b/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
|
| index 1bc85ca8698a398bea085934f4248fdb3f8ab015..158cbbd1aaa5531706c635ee4a99b088a9753676 100644
|
| --- a/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
|
| +++ b/ui/ozone/platform/drm/gpu/drm_thread_proxy.cc
|
| @@ -41,6 +41,7 @@ scoped_refptr<GbmBuffer> DrmThreadProxy::CreateBuffer(
|
| }
|
|
|
| scoped_refptr<GbmBuffer> DrmThreadProxy::CreateBufferFromFds(
|
| + gfx::AcceleratedWidget widget,
|
| const gfx::Size& size,
|
| gfx::BufferFormat format,
|
| std::vector<base::ScopedFD>&& fds,
|
| @@ -50,7 +51,7 @@ scoped_refptr<GbmBuffer> DrmThreadProxy::CreateBufferFromFds(
|
| PostSyncTask(
|
| drm_thread_.task_runner(),
|
| base::Bind(&DrmThread::CreateBufferFromFds,
|
| - base::Unretained(&drm_thread_), size, format,
|
| + base::Unretained(&drm_thread_), widget, size, format,
|
| base::Passed(std::move(fds)), strides, offsets, &buffer));
|
| return buffer;
|
| }
|
|
|