| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/environment.h" | 6 #include "base/environment.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "base/process_util.h" | 9 #include "base/process_util.h" |
| 10 #include "base/sync_socket.h" | 10 #include "base/sync_socket.h" |
| 11 #include "content/browser/browser_thread_impl.h" | 11 #include "content/browser/browser_thread_impl.h" |
| 12 #include "content/browser/mock_resource_context.h" | |
| 13 #include "content/browser/renderer_host/media/audio_renderer_host.h" | 12 #include "content/browser/renderer_host/media/audio_renderer_host.h" |
| 14 #include "content/browser/renderer_host/media/mock_media_observer.h" | 13 #include "content/browser/renderer_host/media/mock_media_observer.h" |
| 15 #include "content/common/media/audio_messages.h" | 14 #include "content/common/media/audio_messages.h" |
| 16 #include "ipc/ipc_message_utils.h" | 15 #include "content/public/browser/resource_context.h" |
| 17 #include "media/audio/audio_manager.h" | 16 #include "media/audio/audio_manager.h" |
| 18 #include "media/audio/fake_audio_output_stream.h" | 17 #include "media/audio/fake_audio_output_stream.h" |
| 19 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
| 20 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
| 21 | 20 |
| 22 using ::testing::_; | 21 using ::testing::_; |
| 23 using ::testing::AtLeast; | 22 using ::testing::AtLeast; |
| 24 using ::testing::DoAll; | 23 using ::testing::DoAll; |
| 25 using ::testing::InSequence; | 24 using ::testing::InSequence; |
| 26 using ::testing::InvokeWithoutArgs; | 25 using ::testing::InvokeWithoutArgs; |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 EnableRealDevice(); | 406 EnableRealDevice(); |
| 408 | 407 |
| 409 Create(); | 408 Create(); |
| 410 Play(); | 409 Play(); |
| 411 SimulateError(); | 410 SimulateError(); |
| 412 Close(); | 411 Close(); |
| 413 } | 412 } |
| 414 | 413 |
| 415 | 414 |
| 416 // TODO(hclam): Add tests for data conversation in low latency mode. | 415 // TODO(hclam): Add tests for data conversation in low latency mode. |
| OLD | NEW |