summaryrefslogtreecommitdiffstats
path: root/webkit/gpu
diff options
context:
space:
mode:
authormmocny@chromium.org <mmocny@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 20:50:25 +0000
committermmocny@chromium.org <mmocny@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-18 20:50:25 +0000
commitb1ba5b9c60e17ffd9a90a88b91ea24d719536b1b (patch)
tree4f7975c3c4d47c16e48bd1d63db6a38b2b38e77c /webkit/gpu
parentc999b79f2de91e40aff9a7c19f53f90057b64852 (diff)
downloadchromium_src-b1ba5b9c60e17ffd9a90a88b91ea24d719536b1b.zip
chromium_src-b1ba5b9c60e17ffd9a90a88b91ea24d719536b1b.tar.gz
chromium_src-b1ba5b9c60e17ffd9a90a88b91ea24d719536b1b.tar.bz2
Removing old setVisibility method which was removed during a refactor a while back.
The new method is setVisibilityCHROMIUM and declared further down in the same file. OVERRIDE keyword would have caught this. BUG=None TEST=Manual Review URL: http://codereview.chromium.org/9249015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/gpu')
-rw-r--r--webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc6
-rw-r--r--webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h4
2 files changed, 2 insertions, 8 deletions
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
index 91ee021..99e74b3 100644
--- a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
+++ b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -790,10 +790,6 @@ void WebGraphicsContext3DInProcessCommandBufferImpl::reshape(
#endif // FLIP_FRAMEBUFFER_VERTICALLY
}
-void WebGraphicsContext3DInProcessCommandBufferImpl::setVisibility(
- bool visible) {
-}
-
WebGLId WebGraphicsContext3DInProcessCommandBufferImpl::createCompositorTexture(
WGC3Dsizei width, WGC3Dsizei height) {
// TODO(gmam): See if we can comment this in.
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
index b6da864..9c27b2c 100644
--- a/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
+++ b/webkit/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -69,8 +69,6 @@ class WebGraphicsContext3DInProcessCommandBufferImpl
virtual void reshape(int width, int height);
- virtual void setVisibility(bool visible);
-
virtual bool readBackFramebuffer(unsigned char* pixels, size_t buffer_size);
virtual bool readBackFramebuffer(unsigned char* pixels, size_t buffer_size,
WebGLId framebuffer, int width, int height);