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

Unified Diff: tests/test_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 | « example/example.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/test_device_context_2d.cc
===================================================================
--- tests/test_device_context_2d.cc (revision 71)
+++ tests/test_device_context_2d.cc (working copy)
@@ -6,8 +6,11 @@
#include <string.h>
+#include "ppapi/c/pp_errors.h"
#include "ppapi/c/pp_rect.h"
#include "ppapi/c/ppb_testing.h"
+#include "ppapi/c/ppb_device_context_2d.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,10 +20,10 @@
namespace {
// A NOP flush callback for use in various tests.
-void FlushCallbackNOP(PP_Resource context, void* data) {
+void FlushCallbackNOP(void* data, int32_t result) {
}
-void FlushCallbackQuitMessageLoop(PP_Resource context, void* data) {
+void FlushCallbackQuitMessageLoop(void* data, int32_t result) {
reinterpret_cast<TestDeviceContext2D*>(data)->QuitMessageLoop();
}
@@ -85,7 +88,11 @@
}
bool TestDeviceContext2D::FlushAndWaitForDone(pp::DeviceContext2D* context) {
- if (!context->Flush(&FlushCallbackQuitMessageLoop, this))
+ pp::CompletionCallback cc(&FlushCallbackQuitMessageLoop, this);
+ int32_t rv = context->Flush(cc);
+ if (rv == PP_OK)
+ return true;
+ if (rv != PP_Error_WouldBlock)
return false;
testing_interface_->RunMessageLoop();
return true;
@@ -175,11 +182,13 @@
return "ReplaceContents succeeded with a NULL resource";
// Flush.
- if (device_context_interface_->Flush(image.pp_resource(),
- &FlushCallbackNOP, NULL))
+ if (device_context_interface_->Flush(
+ image.pp_resource(),
+ PP_MakeCompletionCallback(&FlushCallbackNOP, NULL)) == PP_OK)
return "Flush succeeded with a different resource";
- if (device_context_interface_->Flush(null_context.pp_resource(),
- &FlushCallbackNOP, NULL))
+ if (device_context_interface_->Flush(
+ null_context.pp_resource(),
+ PP_MakeCompletionCallback(&FlushCallbackNOP, NULL)) == PP_OK)
return "Flush succeeded with a NULL resource";
// ReadImageData.
@@ -428,7 +437,8 @@
if (!dc.PaintImageData(background, 0, 0, NULL))
return "Couldn't paint the background.";
- if (dc.Flush(NULL, NULL))
+ int32_t rv = dc.Flush(pp::CompletionCallback::Block());
+ if (rv == PP_OK || rv == PP_Error_WouldBlock)
return "Flush succeeded from the main thread with no callback.";
// Test flushing with no operations still issues a callback.
@@ -440,10 +450,16 @@
return "Couldn't flush the nopaint device";
// Test that multiple flushes fail if we don't get a callback in between.
- if (!dc_nopaints.Flush(&FlushCallbackNOP, NULL))
+ rv = dc_nopaints.Flush(pp::CompletionCallback(&FlushCallbackNOP, NULL));
+ if (rv != PP_OK && rv != PP_Error_WouldBlock)
return "Couldn't flush first time for multiple flush test.";
- if (dc_nopaints.Flush(&FlushCallbackNOP, NULL))
- return "Second flush succeeded before callback ran.";
+ if (rv != PP_OK) {
+ // If the first flush would block, then a second should fail.
+ rv = dc_nopaints.Flush(pp::CompletionCallback(&FlushCallbackNOP, NULL));
+ if (rv == PP_OK || rv == PP_Error_WouldBlock)
+ return "Second flush succeeded before callback ran.";
+ }
+
return "";
}
« no previous file with comments | « example/example.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698