OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/renderer/media/media_stream_audio_source.h" | 5 #include "content/renderer/media/media_stream_audio_source.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 MediaStreamAudioSource::MediaStreamAudioSource( | 9 MediaStreamAudioSource::MediaStreamAudioSource( |
10 int render_view_id, | 10 int render_view_id, |
(...skipping 25 matching lines...) Expand all Loading... |
36 // TODO(xians): Properly implement for audio sources. | 36 // TODO(xians): Properly implement for audio sources. |
37 if (!local_audio_source_) { | 37 if (!local_audio_source_) { |
38 if (!factory_->InitializeMediaStreamAudioSource(render_view_id_, | 38 if (!factory_->InitializeMediaStreamAudioSource(render_view_id_, |
39 constraints, | 39 constraints, |
40 this)) { | 40 this)) { |
41 // The source failed to start. | 41 // The source failed to start. |
42 // MediaStreamImpl rely on the |stop_callback| to be triggered when the | 42 // MediaStreamImpl rely on the |stop_callback| to be triggered when the |
43 // last track is removed from the source. But in this case, the source is | 43 // last track is removed from the source. But in this case, the source is |
44 // is not even started. So we need to fail both adding the track and | 44 // is not even started. So we need to fail both adding the track and |
45 // trigger |stop_callback|. | 45 // trigger |stop_callback|. |
46 callback.Run(this, false); | 46 callback.Run(this, MEDIA_DEVICE_TRACK_START_FAILURE, ""); |
47 StopSource(); | 47 StopSource(); |
48 return; | 48 return; |
49 } | 49 } |
50 } | 50 } |
51 | 51 |
52 factory_->CreateLocalAudioTrack(track); | 52 factory_->CreateLocalAudioTrack(track); |
53 callback.Run(this, true); | 53 callback.Run(this, MEDIA_DEVICE_OK, ""); |
54 } | 54 } |
55 | 55 |
56 } // namespace content | 56 } // namespace content |
OLD | NEW |