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

Unified Diff: media/base/audio_renderer_mixer_unittest.cc

Issue 24579003: Clean up remaining unused globals (on mac). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: staticmedia Created 7 years, 3 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 | « media/audio/audio_output_device_unittest.cc ('k') | media/base/pipeline_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_renderer_mixer_unittest.cc
diff --git a/media/base/audio_renderer_mixer_unittest.cc b/media/base/audio_renderer_mixer_unittest.cc
index 8853068335ca5f221187f38bedc0874fb8430b71..589358357b5f131f5f79694508f9a48ae74d8995 100644
--- a/media/base/audio_renderer_mixer_unittest.cc
+++ b/media/base/audio_renderer_mixer_unittest.cc
@@ -22,18 +22,17 @@
namespace media {
// Parameters which control the many input case tests.
-static const int kMixerInputs = 8;
-static const int kMixerCycles = 3;
+const int kMixerInputs = 8;
+const int kMixerCycles = 3;
// Parameters used for testing.
-static const int kBitsPerChannel = 32;
-static const ChannelLayout kChannelLayout = CHANNEL_LAYOUT_STEREO;
-static const int kHighLatencyBufferSize = 8192;
-static const int kLowLatencyBufferSize = 256;
-static const int kSampleRate = 48000;
+const int kBitsPerChannel = 32;
+const ChannelLayout kChannelLayout = CHANNEL_LAYOUT_STEREO;
+const int kHighLatencyBufferSize = 8192;
+const int kLowLatencyBufferSize = 256;
// Number of full sine wave cycles for each Render() call.
-static const int kSineCycles = 4;
+const int kSineCycles = 4;
// Tuple of <input sampling rate, output sampling rate, epsilon>.
typedef std::tr1::tuple<int, int, double> AudioRendererMixerTestData;
« no previous file with comments | « media/audio/audio_output_device_unittest.cc ('k') | media/base/pipeline_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698