| 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_source.h" | 5 #include "content/renderer/media/media_stream_source.h" |
| 6 | 6 |
| 7 #include "base/callback_helpers.h" | 7 #include "base/callback_helpers.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| 11 const char MediaStreamSource::kSourceId[] = "sourceId"; |
| 12 |
| 11 MediaStreamSource::MediaStreamSource() { | 13 MediaStreamSource::MediaStreamSource() { |
| 12 } | 14 } |
| 13 | 15 |
| 14 MediaStreamSource::~MediaStreamSource() {} | 16 MediaStreamSource::~MediaStreamSource() {} |
| 15 | 17 |
| 16 void MediaStreamSource::StopSource() { | 18 void MediaStreamSource::StopSource() { |
| 17 DoStopSource(); | 19 DoStopSource(); |
| 18 if (!stop_callback_.is_null()) | 20 if (!stop_callback_.is_null()) |
| 19 base::ResetAndReturn(&stop_callback_).Run(owner()); | 21 base::ResetAndReturn(&stop_callback_).Run(owner()); |
| 20 | 22 |
| 21 owner().setReadyState(blink::WebMediaStreamSource::ReadyStateEnded); | 23 owner().setReadyState(blink::WebMediaStreamSource::ReadyStateEnded); |
| 22 } | 24 } |
| 23 | 25 |
| 24 } // namespace content | 26 } // namespace content |
| OLD | NEW |