From 3651d7e25b28b935e9b42620c7dff4de1e0fce43 Mon Sep 17 00:00:00 2001 From: "zmo@chromium.org" Date: Fri, 13 Sep 2013 23:26:16 +0000 Subject: These functions are inherited from blink side WebGraphicsContext3D class. In blink, getter functions do not have prefix "get". BUG=290482 TEST=build R=piman@chromium.org Review URL: https://codereview.chromium.org/23460041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223165 0039d316-1c4b-4281-b951-d872f2087c98 --- .../common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc | 2 +- webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'webkit/common') diff --git a/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc b/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc index b86868e..f5e6d38 100644 --- a/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc +++ b/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc @@ -219,7 +219,7 @@ bool WebGraphicsContext3DInProcessCommandBufferImpl::makeContextCurrent() { return context_ && !isContextLost(); } -uint32_t WebGraphicsContext3DInProcessCommandBufferImpl::getLastFlushID() { +uint32_t WebGraphicsContext3DInProcessCommandBufferImpl::lastFlushID() { return flush_id_; } diff --git a/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h b/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h index f66e417..5b4cb64 100644 --- a/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h +++ b/webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h @@ -74,7 +74,7 @@ class WEBKIT_GPU_EXPORT WebGraphicsContext3DInProcessCommandBufferImpl // WebGraphicsContext3D methods virtual bool makeContextCurrent(); - virtual uint32_t getLastFlushID(); + virtual uint32_t lastFlushID(); virtual int width(); virtual int height(); -- cgit v1.1