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

Unified Diff: ppapi/tests/test_message_handler.h

Issue 264303002: PPAPI: Implement synchronous postMessage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 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 | « ppapi/tests/test_case.html ('k') | ppapi/tests/test_message_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_message_handler.h
diff --git a/ppapi/tests/test_message_handler.h b/ppapi/tests/test_message_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..560a1ff9d167665b4298666d316f8cf6ba75f79b
--- /dev/null
+++ b/ppapi/tests/test_message_handler.h
@@ -0,0 +1,34 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_
+#define PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_
+
+#include <string>
+#include <vector>
+
+#include "ppapi/c/ppb_messaging.h"
+#include "ppapi/tests/test_case.h"
+#include "ppapi/utility/threading/simple_thread.h"
+
+class TestMessageHandler : public TestCase {
+ public:
+ explicit TestMessageHandler(TestingInstance* instance);
+ virtual ~TestMessageHandler();
+
+ private:
+ // TestCase implementation.
+ virtual bool Init();
+ virtual void RunTests(const std::string& filter);
+ virtual void HandleMessage(const pp::Var& message_data);
+
+ std::string TestRegisterErrorConditions();
+ std::string TestPostMessageAndAwaitResponse();
+
+ const PPB_Messaging_1_1* ppb_messaging_if_;
+ pp::SimpleThread handler_thread_;
+};
+
+#endif // PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_
+
« no previous file with comments | « ppapi/tests/test_case.html ('k') | ppapi/tests/test_message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698