| 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 #include "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
| 6 #include "ipc/ipc_message_utils.h" | 6 #include "ipc/ipc_message_utils.h" |
| 7 #include "ppapi/c/ppb_audio.h" | 7 #include "ppapi/c/ppb_audio.h" |
| 8 #include "ppapi/c/ppp_instance.h" | 8 #include "ppapi/c/ppp_instance.h" |
| 9 #include "ppapi/proxy/ppapi_messages.h" | 9 #include "ppapi/proxy/ppapi_messages.h" |
| 10 #include "ppapi/proxy/ppapi_proxy_test.h" | 10 #include "ppapi/proxy/ppapi_proxy_test.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 bool HasTargetProxy(ApiID id) { | 55 bool HasTargetProxy(ApiID id) { |
| 56 return !!plugin_dispatcher()->proxies_[id].get(); | 56 return !!plugin_dispatcher()->proxies_[id].get(); |
| 57 } | 57 } |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 TEST_F(PluginDispatcherTest, SupportsInterface) { | 60 TEST_F(PluginDispatcherTest, SupportsInterface) { |
| 61 RegisterTestInterface(PPB_AUDIO_INTERFACE, &dummy_audio_interface); | 61 RegisterTestInterface(PPB_AUDIO_INTERFACE, &dummy_audio_interface); |
| 62 RegisterTestInterface(PPP_INSTANCE_INTERFACE, &dummy_ppp_instance_interface); | 62 RegisterTestInterface(PPP_INSTANCE_INTERFACE, &dummy_ppp_instance_interface); |
| 63 | 63 |
| 64 // Sending a request for a random interface should fail. | 64 // Sending a request for a random interface should fail. |
| 65 EXPECT_FALSE(IsInterfaceSupported("Random interface")); | 65 EXPECT_FALSE(SupportsInterface("Random interface")); |
| 66 | 66 |
| 67 // Sending a request for a supported PPP interface should succeed. | 67 // Sending a request for a supported PPP interface should succeed. |
| 68 EXPECT_TRUE(IsInterfaceSupported(PPP_INSTANCE_INTERFACE)); | 68 EXPECT_TRUE(SupportsInterface(PPP_INSTANCE_INTERFACE)); |
| 69 } | 69 } |
| 70 | 70 |
| 71 TEST_F(PluginDispatcherTest, PPBCreation) { | 71 TEST_F(PluginDispatcherTest, PPBCreation) { |
| 72 // Sending a PPB message out of the blue should create a target proxy for | 72 // Sending a PPB message out of the blue should create a target proxy for |
| 73 // that interface in the plugin. | 73 // that interface in the plugin. |
| 74 EXPECT_FALSE(HasTargetProxy(API_ID_PPB_AUDIO)); | 74 EXPECT_FALSE(HasTargetProxy(API_ID_PPB_AUDIO)); |
| 75 PpapiMsg_PPBAudio_NotifyAudioStreamCreated audio_msg( | 75 PpapiMsg_PPBAudio_NotifyAudioStreamCreated audio_msg( |
| 76 API_ID_PPB_AUDIO, HostResource(), 0, | 76 API_ID_PPB_AUDIO, HostResource(), 0, |
| 77 ppapi::proxy::SerializedHandle( | 77 ppapi::proxy::SerializedHandle( |
| 78 ppapi::proxy::SerializedHandle::SOCKET), | 78 ppapi::proxy::SerializedHandle::SOCKET), |
| 79 ppapi::proxy::SerializedHandle( | 79 ppapi::proxy::SerializedHandle( |
| 80 ppapi::proxy::SerializedHandle::SHARED_MEMORY)); | 80 ppapi::proxy::SerializedHandle::SHARED_MEMORY)); |
| 81 plugin_dispatcher()->OnMessageReceived(audio_msg); | 81 plugin_dispatcher()->OnMessageReceived(audio_msg); |
| 82 EXPECT_TRUE(HasTargetProxy(API_ID_PPB_AUDIO)); | 82 EXPECT_TRUE(HasTargetProxy(API_ID_PPB_AUDIO)); |
| 83 } | 83 } |
| 84 | 84 |
| 85 } // namespace proxy | 85 } // namespace proxy |
| 86 } // namespace ppapi | 86 } // namespace ppapi |
| 87 | 87 |
| OLD | NEW |