| Index: ui/gl/init/gl_factory_mac.cc
 | 
| diff --git a/ui/gl/init/gl_factory_mac.cc b/ui/gl/init/gl_factory_mac.cc
 | 
| index 243a7909b59e5ab9efa0e425a0a2079d6e55b868..15c3b4c0b7e9a322ffdaf7e865f9e29599176f2c 100644
 | 
| --- a/ui/gl/init/gl_factory_mac.cc
 | 
| +++ b/ui/gl/init/gl_factory_mac.cc
 | 
| @@ -70,7 +70,7 @@
 | 
|  
 | 
|  scoped_refptr<GLContext> CreateGLContext(GLShareGroup* share_group,
 | 
|                                           GLSurface* compatible_surface,
 | 
| -                                         const GLContextAttribs& attribs) {
 | 
| +                                         GpuPreference gpu_preference) {
 | 
|    TRACE_EVENT0("gpu", "gl::init::CreateGLContext");
 | 
|    switch (GetGLImplementation()) {
 | 
|      case kGLImplementationDesktopGL:
 | 
| @@ -81,10 +81,10 @@
 | 
|        // always be creating the context with an offscreen surface first.
 | 
|        DCHECK(compatible_surface->IsOffscreen());
 | 
|        return InitializeGLContext(new GLContextCGL(share_group),
 | 
| -                                 compatible_surface, attribs);
 | 
| +                                 compatible_surface, gpu_preference);
 | 
|      case kGLImplementationOSMesaGL:
 | 
|        return InitializeGLContext(new GLContextOSMesa(share_group),
 | 
| -                                 compatible_surface, attribs);
 | 
| +                                 compatible_surface, gpu_preference);
 | 
|      case kGLImplementationMockGL:
 | 
|        return new GLContextStub(share_group);
 | 
|      default:
 | 
| 
 |