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

Unified Diff: example/example.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.cc ('k') | tests/test_device_context_2d.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: example/example.cc
===================================================================
--- example/example.cc (revision 72)
+++ example/example.cc (working copy)
@@ -10,6 +10,7 @@
#include "ppapi/c/pp_event.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/c/ppp_printing.h"
+#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/device_context_2d.h"
#include "ppapi/cpp/image_data.h"
#include "ppapi/cpp/instance.h"
@@ -17,7 +18,7 @@
#include "ppapi/cpp/scriptable_object.h"
#include "ppapi/cpp/var.h"
-void FlushCallback(PP_Resource context, void* data);
+void FlushCallback(void* data, int32_t result);
void FillRect(pp::ImageData* image, int left, int top, int width, int height,
uint32_t color) {
@@ -133,7 +134,7 @@
pp::ImageData image = PaintImage(width_, height_);
if (!image.is_null()) {
device_context_.ReplaceContents(&image);
- device_context_.Flush(&FlushCallback, this);
+ device_context_.Flush(pp::CompletionCallback(&FlushCallback, this));
}
}
@@ -237,7 +238,7 @@
PP_PrintSettings print_settings_;
};
-void FlushCallback(PP_Resource context, void* data) {
+void FlushCallback(void* data, int32_t result) {
static_cast<MyInstance*>(data)->OnFlush();
}
« no previous file with comments | « cpp/device_context_2d.cc ('k') | tests/test_device_context_2d.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698