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

Unified Diff: ui/ozone/platform/dri/gbm_device.h

Issue 975773002: [Ozone-Dri] Make GbmDevice destructor private (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/gbm_device.h
diff --git a/ui/ozone/platform/dri/gbm_device.h b/ui/ozone/platform/dri/gbm_device.h
index da884e5d520b4f9b2d41e86a5e019346d685ae2a..7395bf8861bea4888ddfc014a38af37b5c6facfd 100644
--- a/ui/ozone/platform/dri/gbm_device.h
+++ b/ui/ozone/platform/dri/gbm_device.h
@@ -15,7 +15,6 @@ class GbmDevice : public DrmDevice {
public:
GbmDevice(const base::FilePath& device_path);
GbmDevice(const base::FilePath& device_path, base::File file);
- ~GbmDevice() override;
gbm_device* device() const { return device_; }
@@ -23,6 +22,8 @@ class GbmDevice : public DrmDevice {
bool Initialize() override;
private:
+ ~GbmDevice() override;
+
gbm_device* device_;
DISALLOW_COPY_AND_ASSIGN(GbmDevice);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698