summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_case.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/tests/test_case.cc')
-rw-r--r--ppapi/tests/test_case.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/tests/test_case.cc b/ppapi/tests/test_case.cc
index 52ec306..a257556 100644
--- a/ppapi/tests/test_case.cc
+++ b/ppapi/tests/test_case.cc
@@ -251,7 +251,7 @@ void TestCase::RunOnThreadInternal(
void (*thread_func)(void*),
void* thread_param,
const PPB_Testing_Private* testing_interface) {
- PP_ThreadType thread;
+ PP_Thread thread;
PP_CreateThread(&thread, thread_func, thread_param);
// Run a message loop so pepper calls can be dispatched. The background
// thread will set result_ and make us Quit when it's done.