| Index: third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h
|
| diff --git a/third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h b/third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h
|
| index c71432d7c43a1ec4c0b998967d1cbbfbf4f37cd5..709c1d250b5e1f0d04bced8936c8f2ec34e68edc 100644
|
| --- a/third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h
|
| +++ b/third_party/WebKit/public/platform/WebGraphicsContext3DProvider.h
|
| @@ -35,6 +35,12 @@
|
|
|
| class GrContext;
|
|
|
| +namespace gpu {
|
| +namespace gles2 {
|
| +class GLES2Interface;
|
| +}
|
| +}
|
| +
|
| namespace blink {
|
|
|
| class WebGraphicsContext3D;
|
| @@ -44,6 +50,7 @@ public:
|
| virtual ~WebGraphicsContext3DProvider() { }
|
|
|
| virtual WebGraphicsContext3D* context3d() = 0;
|
| + virtual gpu::gles2::GLES2Interface* contextGL() = 0;
|
| virtual GrContext* grContext() = 0;
|
| };
|
|
|
|
|