summaryrefslogtreecommitdiffstats
path: root/gpu/pgl
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-25 23:10:58 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-25 23:10:58 +0000
commitc76723a1f489484af50a177bd4020c1ed38e65ed (patch)
treea6fe211e4f8fa42ac76818a4f9d2d27720897fba /gpu/pgl
parent55ac7ea2120b48f88040289986bb46d530e6c296 (diff)
downloadchromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.zip
chromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.tar.gz
chromium_src-c76723a1f489484af50a177bd4020c1ed38e65ed.tar.bz2
linux: enable pepper plugin
This is CL 36399 that was reverted in 36969 because it caused an ICE on the official builders. This adds a workaround for the ICE. Review URL: http://codereview.chromium.org/546136 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/pgl')
-rw-r--r--gpu/pgl/pgl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/pgl/pgl.cc b/gpu/pgl/pgl.cc
index 6f24a31..2fd3d8b 100644
--- a/gpu/pgl/pgl.cc
+++ b/gpu/pgl/pgl.cc
@@ -152,7 +152,7 @@ PGLBoolean pglDestroyContext(PGLContext pgl_context) {
if (!pgl_context)
return false;
- delete pgl_context;
+ delete static_cast<PGLContextImpl*>(pgl_context);
return true;
}