diff options
author | kalyan.kondapally <kalyan.kondapally@intel.com> | 2015-08-19 11:40:21 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-19 18:40:55 +0000 |
commit | bf41d8575ee638276cfb18c480a80bb346f2a2ab (patch) | |
tree | ccdaf43f36fdbbd0dd8bafd529e7f5e3efbd9791 /ui | |
parent | b4fce3f650ab1f264ca6ae48e1afd0e35c33d1a4 (diff) | |
download | chromium_src-bf41d8575ee638276cfb18c480a80bb346f2a2ab.zip chromium_src-bf41d8575ee638276cfb18c480a80bb346f2a2ab.tar.gz chromium_src-bf41d8575ee638276cfb18c480a80bb346f2a2ab.tar.bz2 |
Remove unused member variable
Review URL: https://codereview.chromium.org/1292703003
Cr-Commit-Position: refs/heads/master@{#344283}
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ozone/platform/drm/gpu/crtc_controller.cc | 1 | ||||
-rw-r--r-- | ui/ozone/platform/drm/gpu/crtc_controller.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/ui/ozone/platform/drm/gpu/crtc_controller.cc b/ui/ozone/platform/drm/gpu/crtc_controller.cc index e4d1049..8871a17 100644 --- a/ui/ozone/platform/drm/gpu/crtc_controller.cc +++ b/ui/ozone/platform/drm/gpu/crtc_controller.cc @@ -16,7 +16,6 @@ CrtcController::CrtcController(const scoped_refptr<DrmDevice>& drm, uint32_t crtc, uint32_t connector) : drm_(drm), - overlay_plane_manager_(nullptr), crtc_(crtc), connector_(connector) {} diff --git a/ui/ozone/platform/drm/gpu/crtc_controller.h b/ui/ozone/platform/drm/gpu/crtc_controller.h index 636fe89..5d3c6b1 100644 --- a/ui/ozone/platform/drm/gpu/crtc_controller.h +++ b/ui/ozone/platform/drm/gpu/crtc_controller.h @@ -77,8 +77,6 @@ class OZONE_EXPORT CrtcController scoped_refptr<DrmDevice> drm_; - HardwareDisplayPlaneManager* overlay_plane_manager_; // Not owned. - // Buffers need to be declared first so that they are destroyed last. Needed // since the controllers may reference the buffers. OverlayPlaneList current_planes_; |