Index: ui/ozone/platform/drm/gpu/drm_device.cc |
diff --git a/ui/ozone/platform/drm/gpu/drm_device.cc b/ui/ozone/platform/drm/gpu/drm_device.cc |
index 891a136c8f8d70d892616d2bc3a77ad4a8e30194..1df20c6c5d9ec1702cce442285d059911cf356f4 100644 |
--- a/ui/ozone/platform/drm/gpu/drm_device.cc |
+++ b/ui/ozone/platform/drm/gpu/drm_device.cc |
@@ -179,8 +179,8 @@ int DestroyPropertyBlob(int fd, uint32_t id) { |
return ret < 0 ? -errno : ret; |
} |
-using ScopedDrmColorLutPtr = scoped_ptr<DrmColorLut, base::FreeDeleter>; |
-using ScopedDrmColorCtmPtr = scoped_ptr<DrmColorCtm, base::FreeDeleter>; |
+using ScopedDrmColorLutPtr = std::unique_ptr<DrmColorLut, base::FreeDeleter>; |
+using ScopedDrmColorCtmPtr = std::unique_ptr<DrmColorCtm, base::FreeDeleter>; |
ScopedDrmColorLutPtr CreateLutBlob( |
const std::vector<GammaRampRGBEntry>& source) { |