OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <map> | 5 #include <map> |
6 #include <vector> | 6 #include <vector> |
7 | 7 |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "chrome/common/render_messages.h" | 10 #include "chrome/common/render_messages.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 NPP npp() const { return pepper_plugin_->instance()->npp(); } | 111 NPP npp() const { return pepper_plugin_->instance()->npp(); } |
112 | 112 |
113 protected: | 113 protected: |
114 // Logs that the given flush command was called in flush_calls. | 114 // Logs that the given flush command was called in flush_calls. |
115 static void FlushCalled(NPP instance, | 115 static void FlushCalled(NPP instance, |
116 NPDeviceContext* context, | 116 NPDeviceContext* context, |
117 NPError err, | 117 NPError err, |
118 NPUserData* user_data); | 118 NPUserData* user_data); |
119 | 119 |
| 120 // Audio callback, currently empty. |
| 121 static void AudioCallback(NPDeviceContextAudio* context); |
| 122 |
120 // A log of flush commands we can use to check the async callbacks. | 123 // A log of flush commands we can use to check the async callbacks. |
121 struct FlushData { | 124 struct FlushData { |
122 NPP instance; | 125 NPP instance; |
123 NPDeviceContext* context; | 126 NPDeviceContext* context; |
124 NPError err; | 127 NPError err; |
125 NPUserData* user_data; | 128 NPUserData* user_data; |
126 }; | 129 }; |
127 std::vector<FlushData> flush_calls_; | 130 std::vector<FlushData> flush_calls_; |
128 | 131 |
129 private: | 132 private: |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 PepperDeviceTest* that = active_tests[instance]; | 214 PepperDeviceTest* that = active_tests[instance]; |
212 | 215 |
213 FlushData flush_data; | 216 FlushData flush_data; |
214 flush_data.instance = instance; | 217 flush_data.instance = instance; |
215 flush_data.context = context; | 218 flush_data.context = context; |
216 flush_data.err = err; | 219 flush_data.err = err; |
217 flush_data.user_data = user_data; | 220 flush_data.user_data = user_data; |
218 that->flush_calls_.push_back(flush_data); | 221 that->flush_calls_.push_back(flush_data); |
219 } | 222 } |
220 | 223 |
| 224 void PepperDeviceTest::AudioCallback(NPDeviceContextAudio* context) { |
| 225 } |
| 226 |
| 227 |
221 // ----------------------------------------------------------------------------- | 228 // ----------------------------------------------------------------------------- |
222 | 229 |
223 // TODO(brettw) this crashes on Mac. Figure out why and enable. | 230 // TODO(brettw) this crashes on Mac. Figure out why and enable. |
224 #if !defined(OS_MACOSX) | 231 #if !defined(OS_MACOSX) |
225 | 232 |
226 TEST_F(PepperDeviceTest, Flush) { | 233 TEST_F(PepperDeviceTest, Flush) { |
227 // Create a 2D device. | 234 // Create a 2D device. |
228 NPDeviceContext2DConfig config; | 235 NPDeviceContext2DConfig config; |
229 NPDeviceContext2D context; | 236 NPDeviceContext2D context; |
230 EXPECT_EQ(NPERR_NO_ERROR, | 237 EXPECT_EQ(NPERR_NO_ERROR, |
(...skipping 12 matching lines...) Expand all Loading... |
243 MessageLoop::current()->RunAllPending(); | 250 MessageLoop::current()->RunAllPending(); |
244 EXPECT_TRUE(flush_calls_.empty()); | 251 EXPECT_TRUE(flush_calls_.empty()); |
245 EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching( | 252 EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching( |
246 ViewHostMsg_UpdateRect::ID)); | 253 ViewHostMsg_UpdateRect::ID)); |
247 | 254 |
248 // Send a paint ACK, this should trigger the callback. | 255 // Send a paint ACK, this should trigger the callback. |
249 view_->OnMessageReceived(ViewMsg_UpdateRect_ACK(view_->routing_id())); | 256 view_->OnMessageReceived(ViewMsg_UpdateRect_ACK(view_->routing_id())); |
250 EXPECT_EQ(1u, flush_calls_.size()); | 257 EXPECT_EQ(1u, flush_calls_.size()); |
251 } | 258 } |
252 #endif | 259 #endif |
| 260 |
| 261 TEST_F(PepperDeviceTest, AudioInit) { |
| 262 NPDeviceContextAudioConfig config; |
| 263 config.sampleRate = NPAudioSampleRate44100Hz; |
| 264 config.sampleType = NPAudioSampleTypeInt16; |
| 265 config.outputChannelMap = NPAudioChannelStereo; |
| 266 config.callback = &AudioCallback; |
| 267 config.userData = this; |
| 268 NPDeviceContextAudio context; |
| 269 EXPECT_EQ(NPERR_NO_ERROR, |
| 270 pepper_plugin()->DeviceAudioInitializeContext(&config, &context)); |
| 271 EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching( |
| 272 ViewHostMsg_CreateAudioStream::ID)); |
| 273 EXPECT_EQ(0, memcmp(&config, &context.config, sizeof(config))); |
| 274 EXPECT_EQ(NPERR_NO_ERROR, |
| 275 pepper_plugin()->DeviceAudioDestroyContext(&context)); |
| 276 EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching( |
| 277 ViewHostMsg_CloseAudioStream::ID)); |
| 278 } |
| 279 |
OLD | NEW |