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

Unified Diff: c/ppb_device_context_2d.h

Issue 2853015: Switch FlushCallback to be a PP_CompletionCallback.... (Closed) Base URL: http://ppapi.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 6 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
« no previous file with comments | « c/pp_errors.h ('k') | cpp/device_context_2d.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: c/ppb_device_context_2d.h
===================================================================
--- c/ppb_device_context_2d.h (revision 71)
+++ c/ppb_device_context_2d.h (working copy)
@@ -9,12 +9,9 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
+typedef struct _pp_CompletionCallback PP_CompletionCallback;
typedef struct _pp_Rect PP_Rect;
-// Callback function type for PaintImageData.
-typedef void (*PPB_DeviceContext2D_FlushCallback)(PP_Resource context,
- void* data);
-
#define PPB_DEVICECONTEXT2D_INTERFACE "PPB_DeviceContext2D;1"
typedef struct _ppb_DeviceContext2D {
@@ -163,14 +160,15 @@
// Shutdown: If a plugin instance is removed when a Flush is pending, the
// callback will not be executed.
//
- // Returns true on success or false on failure. Failure means the device
- // context is invalid, you are requesting a synchronous flush from the main
- // thread of the plugin, or you already have a Flush pending that has not
- // issued its callback yet. In the failure case, nothing will be updated and
- // no callback will be scheduled.
- bool (*Flush)(PP_Resource device_context,
- PPB_DeviceContext2D_FlushCallback callback,
- void* callback_data);
+ // TODO(darin): We should ensure that the completion callback always runs, so
+ // that it is easier for consumers to manage memory referenced by a callback.
+ //
+ // Returns PP_OK on success, PP_Error_BadResource if the device context is
+ // invalid, PP_Error_BadArgument if the callback is null and Flush is being
+ // called from the main thread of the plugin, or PP_Error_InProgress if a
+ // Flush is already pending that has not issued its callback yet. In the
+ // failure case, nothing will be updated and no callback will be scheduled.
+ int32_t (*Flush)(PP_Resource device_context, PP_CompletionCallback callback);
} PPB_DeviceContext2D;
« no previous file with comments | « c/pp_errors.h ('k') | cpp/device_context_2d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698