| Index: mojo/public/platform/native/gles2_thunks.cc
|
| diff --git a/mojo/public/platform/native/gles2_thunks.cc b/mojo/public/platform/native/gles2_thunks.cc
|
| index 6d84279bfea036f196c815ae984a055b2cbd601a..2350fcea64c6095ae3b9da5b99f0da1720a7fccb 100644
|
| --- a/mojo/public/platform/native/gles2_thunks.cc
|
| +++ b/mojo/public/platform/native/gles2_thunks.cc
|
| @@ -17,10 +17,11 @@
|
| MojoGLES2Context MojoGLES2CreateContext(MojoHandle handle,
|
| const int32_t* attrib_list,
|
| MojoGLES2ContextLost lost_callback,
|
| - void* closure) {
|
| + void* closure,
|
| + const MojoAsyncWaiter* async_waiter) {
|
| assert(g_control_thunks.GLES2CreateContext);
|
| - return g_control_thunks.GLES2CreateContext(handle, attrib_list, lost_callback,
|
| - closure);
|
| + return g_control_thunks.GLES2CreateContext(
|
| + handle, attrib_list, lost_callback, closure, async_waiter);
|
| }
|
|
|
| void MojoGLES2DestroyContext(MojoGLES2Context context) {
|
|
|