diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 21:24:10 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-22 21:24:10 +0000 |
commit | 7237d1e972a9fc961fe88d11bc8e4b64cbd587e0 (patch) | |
tree | 56ce761442a0f41b4b50de2911541190caccf33b /ppapi/proxy | |
parent | 8a7335baf78d02fdc0b1ea39bd7c86a1f8a0a7f8 (diff) | |
download | chromium_src-7237d1e972a9fc961fe88d11bc8e4b64cbd587e0.zip chromium_src-7237d1e972a9fc961fe88d11bc8e4b64cbd587e0.tar.gz chromium_src-7237d1e972a9fc961fe88d11bc8e4b64cbd587e0.tar.bz2 |
Fix the ARM build. Apparently it's picky about the difference between NULL
and integer 0.
TEST=ARM compiles
BUG=none
Review URL: http://codereview.chromium.org/7198005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90108 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r-- | ppapi/proxy/ppb_surface_3d_proxy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/proxy/ppb_surface_3d_proxy.cc b/ppapi/proxy/ppb_surface_3d_proxy.cc index b515a22..053fc01 100644 --- a/ppapi/proxy/ppb_surface_3d_proxy.cc +++ b/ppapi/proxy/ppb_surface_3d_proxy.cc @@ -44,7 +44,7 @@ Surface3D::Surface3D(const HostResource& host_resource) Surface3D::~Surface3D() { if (context_) - context_->BindSurfaces(NULL, NULL); + context_->BindSurfaces(0, 0); } PPB_Surface3D_API* Surface3D::AsPPB_Surface3D_API() { |