| 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" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 using ::testing::InSequence; | 25 using ::testing::InSequence; |
| 26 using ::testing::InvokeWithoutArgs; | 26 using ::testing::InvokeWithoutArgs; |
| 27 using ::testing::Return; | 27 using ::testing::Return; |
| 28 using ::testing::SaveArg; | 28 using ::testing::SaveArg; |
| 29 using ::testing::SetArgumentPointee; | 29 using ::testing::SetArgumentPointee; |
| 30 using content::BrowserThread; | 30 using content::BrowserThread; |
| 31 | 31 |
| 32 using content::BrowserThreadImpl; | 32 using content::BrowserThreadImpl; |
| 33 | 33 |
| 34 static const int kStreamId = 50; | 34 static const int kStreamId = 50; |
| 35 static const int kRenderViewId = -2; |
| 35 | 36 |
| 36 static bool IsRunningHeadless() { | 37 static bool IsRunningHeadless() { |
| 37 scoped_ptr<base::Environment> env(base::Environment::Create()); | 38 scoped_ptr<base::Environment> env(base::Environment::Create()); |
| 38 if (env->HasVar("CHROME_HEADLESS")) | 39 if (env->HasVar("CHROME_HEADLESS")) |
| 39 return true; | 40 return true; |
| 40 return false; | 41 return false; |
| 41 } | 42 } |
| 42 | 43 |
| 43 class MockAudioRendererHost : public AudioRendererHost { | 44 class MockAudioRendererHost : public AudioRendererHost { |
| 44 public: | 45 public: |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 else | 201 else |
| 201 format = media::AudioParameters::AUDIO_PCM_LINEAR; | 202 format = media::AudioParameters::AUDIO_PCM_LINEAR; |
| 202 | 203 |
| 203 media::AudioParameters params( | 204 media::AudioParameters params( |
| 204 format, CHANNEL_LAYOUT_STEREO, | 205 format, CHANNEL_LAYOUT_STEREO, |
| 205 media::AudioParameters::kAudioCDSampleRate, 16, | 206 media::AudioParameters::kAudioCDSampleRate, 16, |
| 206 media::AudioParameters::kAudioCDSampleRate / 10); | 207 media::AudioParameters::kAudioCDSampleRate / 10); |
| 207 | 208 |
| 208 // Send a create stream message to the audio output stream and wait until | 209 // Send a create stream message to the audio output stream and wait until |
| 209 // we receive the created message. | 210 // we receive the created message. |
| 210 host_->OnCreateStream(kStreamId, params, 0); | 211 host_->OnCreateStream(kRenderViewId, kStreamId, params, 0); |
| 211 message_loop_->Run(); | 212 message_loop_->Run(); |
| 212 } | 213 } |
| 213 | 214 |
| 214 void Close() { | 215 void Close() { |
| 215 EXPECT_CALL(*observer_, | 216 EXPECT_CALL(*observer_, |
| 216 OnSetAudioStreamStatus(_, kStreamId, "closed")); | 217 OnSetAudioStreamStatus(_, kStreamId, "closed")); |
| 217 | 218 |
| 218 // Send a message to AudioRendererHost to tell it we want to close the | 219 // Send a message to AudioRendererHost to tell it we want to close the |
| 219 // stream. | 220 // stream. |
| 220 host_->OnCloseStream(kStreamId); | 221 host_->OnCloseStream(kStreamId); |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 EnableRealDevice(); | 393 EnableRealDevice(); |
| 393 | 394 |
| 394 Create(); | 395 Create(); |
| 395 Play(); | 396 Play(); |
| 396 SimulateError(); | 397 SimulateError(); |
| 397 Close(); | 398 Close(); |
| 398 } | 399 } |
| 399 | 400 |
| 400 | 401 |
| 401 // TODO(hclam): Add tests for data conversation in low latency mode. | 402 // TODO(hclam): Add tests for data conversation in low latency mode. |
| OLD | NEW |