| Index: chrome/browser/media/media_stream_capture_indicator.cc
|
| ===================================================================
|
| --- chrome/browser/media/media_stream_capture_indicator.cc (revision 278170)
|
| +++ chrome/browser/media/media_stream_capture_indicator.cc (working copy)
|
| @@ -230,7 +230,7 @@
|
| if (it->type == content::MEDIA_TAB_AUDIO_CAPTURE ||
|
| it->type == content::MEDIA_TAB_VIDEO_CAPTURE) {
|
| ++mirroring_ref_count_;
|
| - } else if (content::IsAudioInputMediaType(it->type)) {
|
| + } else if (content::IsAudioMediaType(it->type)) {
|
| ++audio_ref_count_;
|
| } else if (content::IsVideoMediaType(it->type)) {
|
| ++video_ref_count_;
|
| @@ -252,7 +252,7 @@
|
| if (it->type == content::MEDIA_TAB_AUDIO_CAPTURE ||
|
| it->type == content::MEDIA_TAB_VIDEO_CAPTURE) {
|
| --mirroring_ref_count_;
|
| - } else if (content::IsAudioInputMediaType(it->type)) {
|
| + } else if (content::IsAudioMediaType(it->type)) {
|
| --audio_ref_count_;
|
| } else if (content::IsVideoMediaType(it->type)) {
|
| --video_ref_count_;
|
|
|