summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorkalyan.kondapally <kalyan.kondapally@intel.com>2015-08-19 11:40:21 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-19 18:40:55 +0000
commitbf41d8575ee638276cfb18c480a80bb346f2a2ab (patch)
treeccdaf43f36fdbbd0dd8bafd529e7f5e3efbd9791 /ui
parentb4fce3f650ab1f264ca6ae48e1afd0e35c33d1a4 (diff)
downloadchromium_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.cc1
-rw-r--r--ui/ozone/platform/drm/gpu/crtc_controller.h2
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_;