| Index: ui/gl/gl_gl_api_implementation.cc
|
| diff --git a/ui/gl/gl_gl_api_implementation.cc b/ui/gl/gl_gl_api_implementation.cc
|
| index 76af7446ddb0c6d4e110fa221b15745c37849a10..1d6fcb15d0a57485bd0c12bc5618f53d1d85ed04 100644
|
| --- a/ui/gl/gl_gl_api_implementation.cc
|
| +++ b/ui/gl/gl_gl_api_implementation.cc
|
| @@ -492,7 +492,7 @@
|
| }
|
|
|
| // Construct filtered extensions string for GL_EXTENSIONS string lookups.
|
| - filtered_exts_str_ = base::JoinString(filtered_exts_, " ");
|
| + filtered_exts_str_ = JoinString(filtered_exts_, " ");
|
| }
|
| }
|
|
|
| @@ -530,7 +530,7 @@
|
| if (it != ext.end())
|
| ext.erase(it);
|
|
|
| - extensions_ = base::JoinString(ext, " ");
|
| + extensions_ = JoinString(ext, " ");
|
| }
|
|
|
| bool VirtualGLApi::MakeCurrent(GLContext* virtual_context, GLSurface* surface) {
|
|
|