| Index: ui/gl/gl_surface_egl.cc
|
| diff --git a/ui/gl/gl_surface_egl.cc b/ui/gl/gl_surface_egl.cc
|
| index 3a453b6e20fdf19816f6bfea3e8ff63516221262..b7f14c866174d59a8d34a866756dd1371584fa65 100644
|
| --- a/ui/gl/gl_surface_egl.cc
|
| +++ b/ui/gl/gl_surface_egl.cc
|
| @@ -170,7 +170,7 @@ bool GLSurfaceEGL::InitializeOneOff() {
|
| #if defined(USE_OZONE)
|
| const EGLint* config_attribs =
|
| ui::SurfaceFactoryOzone::GetInstance()->GetEGLSurfaceProperties(
|
| - kConfigAttribs);
|
| + kConfigAttribs, nullptr);
|
| #else
|
| const EGLint* config_attribs = kConfigAttribs;
|
| #endif
|
| @@ -338,9 +338,9 @@ EGLDisplay GLSurfaceEGL::GetPlatformDisplay(
|
|
|
| NativeViewGLSurfaceEGL::NativeViewGLSurfaceEGL(EGLNativeWindowType window)
|
| : window_(window),
|
| + config_(NULL),
|
| surface_(NULL),
|
| supports_post_sub_buffer_(false),
|
| - config_(NULL),
|
| size_(1, 1) {
|
| #if defined(OS_ANDROID)
|
| if (window)
|
|
|