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

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

Issue 940223002: [Ozone-Dri] Make GbmWrapper 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_wrapper.h
diff --git a/ui/ozone/platform/dri/gbm_wrapper.h b/ui/ozone/platform/dri/gbm_wrapper.h
index f7e4f3d5f7d6f637090612e2e4c8fa0a6fc75183..41b2b6a9498b85b8d9eb34e7c2e32768ffce67fd 100644
--- a/ui/ozone/platform/dri/gbm_wrapper.h
+++ b/ui/ozone/platform/dri/gbm_wrapper.h
@@ -15,7 +15,6 @@ class GbmWrapper : public DriWrapper {
public:
GbmWrapper(const base::FilePath& device_path);
GbmWrapper(const base::FilePath& device_path, base::File file);
- ~GbmWrapper() override;
gbm_device* device() const { return device_; }
@@ -23,6 +22,8 @@ class GbmWrapper : public DriWrapper {
void Initialize() override;
private:
+ ~GbmWrapper() override;
+
gbm_device* device_;
DISALLOW_COPY_AND_ASSIGN(GbmWrapper);
« 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