summaryrefslogtreecommitdiffstats
path: root/webkit/common
diff options
context:
space:
mode:
authorzmo@chromium.org <zmo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-13 23:26:16 +0000
committerzmo@chromium.org <zmo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-13 23:26:16 +0000
commit3651d7e25b28b935e9b42620c7dff4de1e0fce43 (patch)
tree25b1c74781176a436f8173ee9b95ddacd11d4156 /webkit/common
parent11ec3b6d2ce4175fbb8742ab9731375e8aa96161 (diff)
downloadchromium_src-3651d7e25b28b935e9b42620c7dff4de1e0fce43.zip
chromium_src-3651d7e25b28b935e9b42620c7dff4de1e0fce43.tar.gz
chromium_src-3651d7e25b28b935e9b42620c7dff4de1e0fce43.tar.bz2
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
Diffstat (limited to 'webkit/common')
-rw-r--r--webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc2
-rw-r--r--webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h2
2 files changed, 2 insertions, 2 deletions
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();