diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 00:11:11 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 00:11:11 +0000 |
commit | e7e7ebdcb1147a739a10929ed8f73be6044946ba (patch) | |
tree | b96b0fe1963b97ea7fb27fd91225375390e9db85 /mojo/examples/compositor_app | |
parent | 7ad4583b7894d77582bc4fda17f7d80dbd6eb84c (diff) | |
download | chromium_src-e7e7ebdcb1147a739a10929ed8f73be6044946ba.zip chromium_src-e7e7ebdcb1147a739a10929ed8f73be6044946ba.tar.gz chromium_src-e7e7ebdcb1147a739a10929ed8f73be6044946ba.tar.bz2 |
Remove WebGraphicsContext3D getter from cc::ContextProvider
The compositor uses GLES2Interface to talk to the OpenGL context now, so
the WebGraphicsContext3D getter isn't applicable at this layer.
BUG=181120
Review URL: https://codereview.chromium.org/132163004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245026 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/examples/compositor_app')
-rw-r--r-- | mojo/examples/compositor_app/compositor_host.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mojo/examples/compositor_app/compositor_host.cc b/mojo/examples/compositor_app/compositor_host.cc index ff6854d..df41fb1 100644 --- a/mojo/examples/compositor_app/compositor_host.cc +++ b/mojo/examples/compositor_app/compositor_host.cc @@ -22,7 +22,6 @@ class MojoContextProvider : public cc::ContextProvider { // cc::ContextProvider implementation. virtual bool BindToCurrentThread() OVERRIDE { return true; } - virtual blink::WebGraphicsContext3D* Context3d() OVERRIDE { return NULL; } virtual gpu::gles2::GLES2Interface* ContextGL() OVERRIDE { return gles2_client_impl_->Interface(); } |