| Index: ui/gl/gl_implementation_android.cc
|
| diff --git a/ui/gl/gl_implementation_android.cc b/ui/gl/gl_implementation_android.cc
|
| index d948c5782f86963d0d8151d0a0f8f6c643d1f3b8..f644866b3d8e0aa257619b837ba50f77077913d2 100644
|
| --- a/ui/gl/gl_implementation_android.cc
|
| +++ b/ui/gl/gl_implementation_android.cc
|
| @@ -132,4 +132,14 @@ void ClearGLBindings() {
|
| UnloadGLNativeLibraries();
|
| }
|
|
|
| +bool GetGLWindowSystemBindingInfo(GLWindowSystemBindingInfo* info) {
|
| + switch (GetGLImplementation()) {
|
| + case kGLImplementationEGLGLES2:
|
| + return GetGLWindowSystemBindingInfoEGL(info);
|
| + default:
|
| + return false;
|
| + }
|
| + return false;
|
| +}
|
| +
|
| } // namespace gfx
|
|
|