| Index: ui/gl/init/gl_factory_x11.cc
 | 
| diff --git a/ui/gl/init/gl_factory_x11.cc b/ui/gl/init/gl_factory_x11.cc
 | 
| index 88f86206e900cc5ece1eb3e89886edac3122fa31..e78c203e99d72e1b18aca1107a09b8684ea6b848 100644
 | 
| --- a/ui/gl/init/gl_factory_x11.cc
 | 
| +++ b/ui/gl/init/gl_factory_x11.cc
 | 
| @@ -47,18 +47,18 @@
 | 
|  
 | 
|  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 kGLImplementationOSMesaGL:
 | 
|        return InitializeGLContext(new GLContextOSMesa(share_group),
 | 
| -                                 compatible_surface, attribs);
 | 
| +                                 compatible_surface, gpu_preference);
 | 
|      case kGLImplementationDesktopGL:
 | 
|        return InitializeGLContext(new GLContextGLX(share_group),
 | 
| -                                 compatible_surface, attribs);
 | 
| +                                 compatible_surface, gpu_preference);
 | 
|      case kGLImplementationEGLGLES2:
 | 
|        return InitializeGLContext(new GLContextEGL(share_group),
 | 
| -                                 compatible_surface, attribs);
 | 
| +                                 compatible_surface, gpu_preference);
 | 
|      case kGLImplementationMockGL:
 | 
|        return new GLContextStub(share_group);
 | 
|      default:
 | 
| 
 |