Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: mojo/public/gles2/gles2_private.h

Issue 428413002: Make async waiter explicit MojoGLES2CreateContext param (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/public/gles2/gles2_private.h
diff --git a/mojo/public/gles2/gles2_private.h b/mojo/public/gles2/gles2_private.h
index 0854f6fc55c70a9726f0b0040daaf0b70f0a9f95..45f0b03f94ae662135f96b4f191f15f6cc01cd1f 100644
--- a/mojo/public/gles2/gles2_private.h
+++ b/mojo/public/gles2/gles2_private.h
@@ -24,12 +24,11 @@ class MOJO_GLES2_EXPORT GLES2Support {
static void Init(GLES2Support* gles2_support);
- virtual void Initialize(const MojoAsyncWaiter* async_waiter) = 0;
- virtual void Terminate() = 0;
virtual MojoGLES2Context CreateContext(
MessagePipeHandle handle,
MojoGLES2ContextLost lost_callback,
- void* closure) = 0;
+ void* closure,
+ const MojoAsyncWaiter* async_waiter) = 0;
virtual void DestroyContext(MojoGLES2Context context) = 0;
virtual void MakeCurrent(MojoGLES2Context context) = 0;
virtual void SwapBuffers() = 0;

Powered by Google App Engine
This is Rietveld 408576698