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

Unified Diff: cpp/device_context_2d.cc

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 | « cpp/device_context_2d.h ('k') | example/example.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cpp/device_context_2d.cc
===================================================================
--- cpp/device_context_2d.cc (revision 71)
+++ cpp/device_context_2d.cc (working copy)
@@ -4,6 +4,9 @@
#include "ppapi/cpp/device_context_2d.h"
+#include "ppapi/c/pp_errors.h"
+#include "ppapi/c/ppb_device_context_2d.h"
+#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/image_data.h"
#include "ppapi/cpp/module.h"
@@ -89,11 +92,13 @@
return false;
}
-bool DeviceContext2D::Flush(PPB_DeviceContext2D_FlushCallback callback,
- void* callback_data) {
- if (!EnsureFuncs() || is_null())
- return false;
- return device_context_2d_funcs->Flush(pp_resource(), callback, callback_data);
+int32_t DeviceContext2D::Flush(const CompletionCallback& cc) {
+ if (!EnsureFuncs())
+ return PP_Error_NoInterface;
+ if (is_null())
+ return PP_Error_BadResource;
+ return device_context_2d_funcs->Flush(pp_resource(),
+ cc.pp_completion_callback());
}
} // namespace pp
« no previous file with comments | « cpp/device_context_2d.h ('k') | example/example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698