| Index: cc/test/test_context_provider.cc
|
| diff --git a/cc/test/test_context_provider.cc b/cc/test/test_context_provider.cc
|
| index af1e12db75bc5d2fa00885e955a31e83f7702564..8484b38f8901aa45c37fc7cf3f31884f313cd772 100644
|
| --- a/cc/test/test_context_provider.cc
|
| +++ b/cc/test/test_context_provider.cc
|
| @@ -120,6 +120,14 @@ blink::WebGraphicsContext3D* TestContextProvider::Context3d() {
|
| return context3d_.get();
|
| }
|
|
|
| +gpu::gles2::GLES2Interface* TestContextProvider::ContextGL() {
|
| + DCHECK(context3d_);
|
| + DCHECK(bound_);
|
| + DCHECK(context_thread_checker_.CalledOnValidThread());
|
| +
|
| + return &context_gl_stub_;
|
| +}
|
| +
|
| gpu::ContextSupport* TestContextProvider::ContextSupport() {
|
| DCHECK(bound_);
|
| DCHECK(context_thread_checker_.CalledOnValidThread());
|
|
|