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