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

Unified Diff: chrome/renderer/pepper_devices_unittest.cc

Issue 1344003: Revert 42656 - Add a Pepper audio basic functionality unit test.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | « chrome/renderer/mock_render_thread.cc ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/pepper_devices_unittest.cc
===================================================================
--- chrome/renderer/pepper_devices_unittest.cc (revision 42691)
+++ chrome/renderer/pepper_devices_unittest.cc (working copy)
@@ -117,9 +117,6 @@
NPError err,
NPUserData* user_data);
- // Audio callback, currently empty.
- static void AudioCallback(NPDeviceContextAudio* context);
-
// A log of flush commands we can use to check the async callbacks.
struct FlushData {
NPP instance;
@@ -221,10 +218,6 @@
that->flush_calls_.push_back(flush_data);
}
-void PepperDeviceTest::AudioCallback(NPDeviceContextAudio* context) {
-}
-
-
// -----------------------------------------------------------------------------
// TODO(brettw) this crashes on Mac. Figure out why and enable.
@@ -257,23 +250,3 @@
EXPECT_EQ(1u, flush_calls_.size());
}
#endif
-
-TEST_F(PepperDeviceTest, AudioInit) {
- NPDeviceContextAudioConfig config;
- config.sampleRate = NPAudioSampleRate44100Hz;
- config.sampleType = NPAudioSampleTypeInt16;
- config.outputChannelMap = NPAudioChannelStereo;
- config.callback = &AudioCallback;
- config.userData = this;
- NPDeviceContextAudio context;
- EXPECT_EQ(NPERR_NO_ERROR,
- pepper_plugin()->DeviceAudioInitializeContext(&config, &context));
- EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching(
- ViewHostMsg_CreateAudioStream::ID));
- EXPECT_EQ(0, memcmp(&config, &context.config, sizeof(config)));
- EXPECT_EQ(NPERR_NO_ERROR,
- pepper_plugin()->DeviceAudioDestroyContext(&context));
- EXPECT_TRUE(render_thread_.sink().GetFirstMessageMatching(
- ViewHostMsg_CloseAudioStream::ID));
-}
-
« no previous file with comments | « chrome/renderer/mock_render_thread.cc ('k') | ipc/ipc_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698