| Index: ppapi/tests/test_message_handler.h
|
| diff --git a/ppapi/tests/test_message_handler.h b/ppapi/tests/test_message_handler.h
|
| index 70e6a2f8a8ccb12a1172d57b7d19567dadd3e9b0..83d648cb6290c96bc4c48f66bc93a3d8d3f81075 100644
|
| --- a/ppapi/tests/test_message_handler.h
|
| +++ b/ppapi/tests/test_message_handler.h
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "ppapi/c/ppb_messaging.h"
|
| #include "ppapi/tests/test_case.h"
|
| +#include "ppapi/tests/test_utils.h"
|
| #include "ppapi/utility/threading/simple_thread.h"
|
|
|
| class TestMessageHandler : public TestCase {
|
| @@ -25,9 +26,15 @@ class TestMessageHandler : public TestCase {
|
|
|
| std::string TestRegisterErrorConditions();
|
| std::string TestPostMessageAndAwaitResponse();
|
| + std::string TestExceptions();
|
|
|
| const PPB_Messaging_1_2* ppb_messaging_if_;
|
| pp::SimpleThread handler_thread_;
|
| +
|
| + // For TestExceptions():
|
| + bool testing_exceptions_;
|
| + NestedEvent message_received_;
|
| + std::string last_message_;
|
| };
|
|
|
| #endif // PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_
|
|
|