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

Unified Diff: cpp/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/ppb_device_context_2d.h ('k') | cpp/device_context_2d.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cpp/device_context_2d.h
===================================================================
--- cpp/device_context_2d.h (revision 71)
+++ cpp/device_context_2d.h (working copy)
@@ -6,13 +6,14 @@
#define PPAPI_CPP_DEVICE_CONTEXT_2D_H_
#include "ppapi/c/pp_stdint.h"
-#include "ppapi/c/ppb_device_context_2d.h"
#include "ppapi/cpp/resource.h"
+typedef struct _pp_CompletionCallback PP_CompletionCallback;
typedef struct _pp_Rect PP_Rect;
namespace pp {
+class CompletionCallback;
class ImageData;
class DeviceContext2D : public Resource {
@@ -54,12 +55,12 @@
// Please see PPB_DeviceContext2D.Swap for more details.
bool ReplaceContents(ImageData* image);
- // Flushes all the currently enqueued Paint, Scroll, and Swap commands. Can
- // be used in synchronous mode (NULL callback pointer) from background
+ // Flushes all the currently enqueued Paint, Scroll, and Replace commands.
+ // Can be used in synchronous mode (NULL callback pointer) from background
// threads.
//
// Please see PPB_DeviceContext2D.Flush for more details.
- bool Flush(PPB_DeviceContext2D_FlushCallback callback, void* callback_data);
+ int32_t Flush(const CompletionCallback& cc);
private:
int32_t width_;
« no previous file with comments | « c/ppb_device_context_2d.h ('k') | cpp/device_context_2d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698