diff options
author | zmo@chromium.org <zmo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-13 23:26:16 +0000 |
---|---|---|
committer | zmo@chromium.org <zmo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-13 23:26:16 +0000 |
commit | 3651d7e25b28b935e9b42620c7dff4de1e0fce43 (patch) | |
tree | 25b1c74781176a436f8173ee9b95ddacd11d4156 /content | |
parent | 11ec3b6d2ce4175fbb8742ab9731375e8aa96161 (diff) | |
download | chromium_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 'content')
-rw-r--r-- | content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.cc | 2 | ||||
-rw-r--r-- | content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h | 2 |
2 files changed, 2 insertions, 2 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(); |