| Index: ui/gfx/gl/gl_implementation_mac.cc
|
| diff --git a/ui/gfx/gl/gl_implementation_mac.cc b/ui/gfx/gl/gl_implementation_mac.cc
|
| index 00ed6bb05162ea2832926936fb69fe1d64b9cb41..a8b3ddd7f61c53629f7939048666e1e648828218 100644
|
| --- a/ui/gfx/gl/gl_implementation_mac.cc
|
| +++ b/ui/gfx/gl/gl_implementation_mac.cc
|
| @@ -33,7 +33,7 @@ bool InitializeGLBindings(GLImplementation implementation) {
|
|
|
| // When using OSMesa, just use OSMesaGetProcAddress to find entry points.
|
| base::NativeLibrary library = base::LoadNativeLibrary(
|
| - module_path.Append("osmesa.so"));
|
| + module_path.Append("osmesa.so"), NULL);
|
| if (!library) {
|
| VLOG(1) << "osmesa.so not found";
|
| return false;
|
| @@ -59,7 +59,7 @@ bool InitializeGLBindings(GLImplementation implementation) {
|
| }
|
| case kGLImplementationDesktopGL: {
|
| base::NativeLibrary library = base::LoadNativeLibrary(
|
| - FilePath(kOpenGLFrameworkPath));
|
| + FilePath(kOpenGLFrameworkPath), NULL);
|
| if (!library) {
|
| LOG(ERROR) << "OpenGL framework not found";
|
| return false;
|
|
|