| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/api/mediastream.h" | 11 #include "webrtc/pc/mediastream.h" |
| 12 #include "webrtc/base/logging.h" | 12 #include "webrtc/base/logging.h" |
| 13 | 13 |
| 14 namespace webrtc { | 14 namespace webrtc { |
| 15 | 15 |
| 16 template <class V> | 16 template <class V> |
| 17 static typename V::iterator FindTrack(V* vector, | 17 static typename V::iterator FindTrack(V* vector, |
| 18 const std::string& track_id) { | 18 const std::string& track_id) { |
| 19 typename V::iterator it = vector->begin(); | 19 typename V::iterator it = vector->begin(); |
| 20 for (; it != vector->end(); ++it) { | 20 for (; it != vector->end(); ++it) { |
| 21 if ((*it)->id() == track_id) { | 21 if ((*it)->id() == track_id) { |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 return false; | 86 return false; |
| 87 typename TrackVector::iterator it = FindTrack(tracks, track->id()); | 87 typename TrackVector::iterator it = FindTrack(tracks, track->id()); |
| 88 if (it == tracks->end()) | 88 if (it == tracks->end()) |
| 89 return false; | 89 return false; |
| 90 tracks->erase(it); | 90 tracks->erase(it); |
| 91 FireOnChanged(); | 91 FireOnChanged(); |
| 92 return true; | 92 return true; |
| 93 } | 93 } |
| 94 | 94 |
| 95 } // namespace webrtc | 95 } // namespace webrtc |
| OLD | NEW |