diff options
4 files changed, 4 insertions, 4 deletions
diff --git a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc index 74bd71c..edf8de4 100644 --- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc +++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc @@ -507,7 +507,7 @@ bool WebGraphicsContext3DCommandBufferImpl::makeContextCurrent() { return true; } -uint32_t WebGraphicsContext3DCommandBufferImpl::getLastFlushID() { +uint32_t WebGraphicsContext3DCommandBufferImpl::lastFlushID() { return flush_id_; } diff --git a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h index 7c6452d..8f81e29 100644 --- a/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h +++ b/content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h @@ -143,7 +143,7 @@ class WebGraphicsContext3DCommandBufferImpl // graphics context fails to create. Do not call from more than one thread. virtual bool makeContextCurrent(); - virtual uint32_t getLastFlushID(); + virtual uint32_t lastFlushID(); virtual int width(); virtual int height(); 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(); |