diff options
author | jbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-13 00:19:42 +0000 |
---|---|---|
committer | jbates@chromium.org <jbates@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-13 00:19:42 +0000 |
commit | 91b104034308452e32b4bb99498afe1724febbb9 (patch) | |
tree | 4ae1402d2daf41ab9c940730685091f107432b03 /webkit/gpu | |
parent | 5736299f6a3a48b915354a7d8f5d30994620b21e (diff) | |
download | chromium_src-91b104034308452e32b4bb99498afe1724febbb9.zip chromium_src-91b104034308452e32b4bb99498afe1724febbb9.tar.gz chromium_src-91b104034308452e32b4bb99498afe1724febbb9.tar.bz2 |
Fix the incorrect method name override.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6820079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81338 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/gpu')
-rw-r--r-- | webkit/gpu/webgraphicscontext3d_in_process_impl.cc | 4 | ||||
-rw-r--r-- | webkit/gpu/webgraphicscontext3d_in_process_impl.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc index 27a0c99..32b3fa3 100644 --- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc +++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc @@ -654,12 +654,12 @@ void WebGraphicsContext3DInProcessImpl::copyTextureToParentTextureCHROMIUM( glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, bound_fbo_); } -void WebGraphicsContext3DInProcessImpl::getLatchParentToChildCHROMIUM( +void WebGraphicsContext3DInProcessImpl::getParentToChildLatchCHROMIUM( WGC3Duint* latch_id) { } -void WebGraphicsContext3DInProcessImpl::getLatchChildToParentCHROMIUM( +void WebGraphicsContext3DInProcessImpl::getChildToParentLatchCHROMIUM( WGC3Duint* latch_id) { } diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.h b/webkit/gpu/webgraphicscontext3d_in_process_impl.h index 600b22c..015bdfa 100644 --- a/webkit/gpu/webgraphicscontext3d_in_process_impl.h +++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.h @@ -89,8 +89,8 @@ class WebGraphicsContext3DInProcessImpl : public WebGraphicsContext3D { virtual void copyTextureToParentTextureCHROMIUM( WebGLId texture, WebGLId parentTexture); - virtual void getLatchParentToChildCHROMIUM(WGC3Duint* latch_id); - virtual void getLatchChildToParentCHROMIUM(WGC3Duint* latch_id); + virtual void getParentToChildLatchCHROMIUM(WGC3Duint* latch_id); + virtual void getChildToParentLatchCHROMIUM(WGC3Duint* latch_id); virtual void waitLatchCHROMIUM(WGC3Duint latch_id); virtual void setLatchCHROMIUM(WGC3Duint latch_id); |