| OLD | NEW | 
|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/basictypes.h" |  | 
| 6 #include "base/logging.h" | 5 #include "base/logging.h" | 
| 7 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" | 
| 8 #include "base/strings/string_piece.h" | 7 #include "base/strings/string_piece.h" | 
| 9 #include "media/audio/sounds/test_data.h" | 8 #include "media/audio/sounds/test_data.h" | 
| 10 #include "media/audio/sounds/wav_audio_handler.h" | 9 #include "media/audio/sounds/wav_audio_handler.h" | 
| 11 #include "media/base/audio_bus.h" | 10 #include "media/base/audio_bus.h" | 
| 12 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" | 
| 13 | 12 | 
| 14 namespace media { | 13 namespace media { | 
| 15 namespace { | 14 namespace { | 
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 181   EXPECT_TRUE(handler); | 180   EXPECT_TRUE(handler); | 
| 182   ASSERT_EQ(2u, handler->num_channels()); | 181   ASSERT_EQ(2u, handler->num_channels()); | 
| 183   ASSERT_EQ(16u, handler->bits_per_sample()); | 182   ASSERT_EQ(16u, handler->bits_per_sample()); | 
| 184   ASSERT_EQ(48000u, handler->sample_rate()); | 183   ASSERT_EQ(48000u, handler->sample_rate()); | 
| 185   ASSERT_EQ(0u, handler->total_frames()); | 184   ASSERT_EQ(0u, handler->total_frames()); | 
| 186   ASSERT_EQ(0u, handler->GetDuration().InMicroseconds()); | 185   ASSERT_EQ(0u, handler->GetDuration().InMicroseconds()); | 
| 187   ASSERT_EQ(0u, handler->data().size()); | 186   ASSERT_EQ(0u, handler->data().size()); | 
| 188 } | 187 } | 
| 189 | 188 | 
| 190 }  // namespace media | 189 }  // namespace media | 
| OLD | NEW | 
|---|