Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(918)

Unified Diff: ui/ozone/platform/dri/drm_device_generator.cc

Issue 908993003: [Ozone-Dri] Rename DriWrapper to DrmDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@udl3-pass-drm-fd
Patch Set: rebased Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/dri/drm_device_generator.h ('k') | ui/ozone/platform/dri/drm_device_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/drm_device_generator.cc
diff --git a/ui/ozone/platform/dri/drm_device_generator.cc b/ui/ozone/platform/dri/drm_device_generator.cc
index 13985db458abc5c3161eb3a0471b3d7604fe2731..f6f6f33fbc552dedf44086f17f9c55d8882e57c9 100644
--- a/ui/ozone/platform/dri/drm_device_generator.cc
+++ b/ui/ozone/platform/dri/drm_device_generator.cc
@@ -4,7 +4,7 @@
#include "ui/ozone/platform/dri/drm_device_generator.h"
-#include "ui/ozone/platform/dri/dri_wrapper.h"
+#include "ui/ozone/platform/dri/drm_device.h"
namespace ui {
@@ -14,10 +14,10 @@ DrmDeviceGenerator::DrmDeviceGenerator() {
DrmDeviceGenerator::~DrmDeviceGenerator() {
}
-scoped_refptr<DriWrapper> DrmDeviceGenerator::CreateDevice(
+scoped_refptr<DrmDevice> DrmDeviceGenerator::CreateDevice(
const base::FilePath& device_path,
base::File file) {
- scoped_refptr<DriWrapper> drm = new DriWrapper(device_path, file.Pass());
+ scoped_refptr<DrmDevice> drm = new DrmDevice(device_path, file.Pass());
if (drm->Initialize())
return drm;
« no previous file with comments | « ui/ozone/platform/dri/drm_device_generator.h ('k') | ui/ozone/platform/dri/drm_device_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698