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

Unified Diff: chrome/browser/renderer_host/audio_renderer_host_unittest.cc

Issue 661386: Add a parameter to CreateAudioStream to choose between standard and low-latency mode. (Closed)
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/browser/renderer_host/audio_renderer_host.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/audio_renderer_host_unittest.cc
diff --git a/chrome/browser/renderer_host/audio_renderer_host_unittest.cc b/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
index f868c2a2b56766f92b4fcfcee6fa945c468b2d06..b778dff6519d27c6440b42d65ebf7f8fb461e65f 100644
--- a/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
+++ b/chrome/browser/renderer_host/audio_renderer_host_unittest.cc
@@ -161,7 +161,8 @@ class AudioRendererHostTest : public testing::Test {
AudioManager::kAudioCDSampleRate,
16,
kPacketSize,
- kBufferCapacity);
+ kBufferCapacity,
+ false);
EXPECT_TRUE(source);
EXPECT_EQ(kProcessId, source->process_id());
EXPECT_EQ(kRouteId, source->route_id());
« no previous file with comments | « chrome/browser/renderer_host/audio_renderer_host.cc ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698