Chromium Code Reviews| Index: chrome/browser/media/audio_stream_indicator.cc |
| =================================================================== |
| --- chrome/browser/media/audio_stream_indicator.cc (revision 182501) |
| +++ chrome/browser/media/audio_stream_indicator.cc (working copy) |
| @@ -64,7 +64,7 @@ |
| } else { |
| std::map<RenderViewId, std::set<int> >::iterator it = |
| audio_streams_.find(id); |
| - if (it != audio_streams_.end()) |
| + if (it == audio_streams_.end()) |
| return; |
| it->second.erase(stream_id); |