| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef PPAPI_TESTS_TEST_POST_MESSAGE_H_ | 5 #ifndef PPAPI_TESTS_TEST_POST_MESSAGE_H_ |
| 6 #define PPAPI_TESTS_TEST_POST_MESSAGE_H_ | 6 #define PPAPI_TESTS_TEST_POST_MESSAGE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ppapi/c/dev/ppb_var_resource_dev.h" | |
| 12 #include "ppapi/c/ppb_file_system.h" | |
| 13 #include "ppapi/c/ppb_var.h" | |
| 14 #include "ppapi/tests/test_case.h" | 11 #include "ppapi/tests/test_case.h" |
| 15 | 12 |
| 16 class TestPostMessage : public TestCase { | 13 class TestPostMessage : public TestCase { |
| 17 public: | 14 public: |
| 18 explicit TestPostMessage(TestingInstance* instance); | 15 explicit TestPostMessage(TestingInstance* instance); |
| 19 virtual ~TestPostMessage(); | 16 virtual ~TestPostMessage(); |
| 20 | 17 |
| 21 private: | 18 private: |
| 22 // TestCase implementation. | 19 // TestCase implementation. |
| 23 virtual bool Init(); | 20 virtual bool Init(); |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 std::string TestExtraParam(); | 97 std::string TestExtraParam(); |
| 101 | 98 |
| 102 // Test sending messages off of the main thread. | 99 // Test sending messages off of the main thread. |
| 103 std::string TestNonMainThread(); | 100 std::string TestNonMainThread(); |
| 104 | 101 |
| 105 typedef std::vector<pp::Var> VarVector; | 102 typedef std::vector<pp::Var> VarVector; |
| 106 | 103 |
| 107 // This is used to store pp::Var objects we receive via a call to | 104 // This is used to store pp::Var objects we receive via a call to |
| 108 // HandleMessage. | 105 // HandleMessage. |
| 109 VarVector message_data_; | 106 VarVector message_data_; |
| 110 | |
| 111 // Interfaces for C APIs. | |
| 112 const PPB_Core* core_interface_; | |
| 113 const PPB_FileSystem* file_system_interface_; | |
| 114 const PPB_Var* var_interface_; | |
| 115 const PPB_VarResource_Dev* var_resource_interface_; | |
| 116 }; | 107 }; |
| 117 | 108 |
| 118 #endif // PPAPI_TESTS_TEST_POST_MESSAGE_H_ | 109 #endif // PPAPI_TESTS_TEST_POST_MESSAGE_H_ |
| 119 | 110 |
| OLD | NEW |