| Index: chrome/browser/speech/speech_recognition_bubble_controller.cc
|
| diff --git a/chrome/browser/speech/speech_recognition_bubble_controller.cc b/chrome/browser/speech/speech_recognition_bubble_controller.cc
|
| index 2f275ef856c0bed2bb2a57ad6bfa19e96ae18f09..f2b3f0b4f283103dc4d42ae22d02fe4510d8b555 100644
|
| --- a/chrome/browser/speech/speech_recognition_bubble_controller.cc
|
| +++ b/chrome/browser/speech/speech_recognition_bubble_controller.cc
|
| @@ -99,7 +99,7 @@ void SpeechRecognitionBubbleController::UpdateTabContentsSubscription(
|
| int caller_id, ManageSubscriptionAction action) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| - // If there are any other bubbles existing for the same TabContents, we would
|
| + // If there are any other bubbles existing for the same WebContents, we would
|
| // have subscribed to tab close notifications on their behalf and we need to
|
| // stay registered. So we don't change the subscription in such cases.
|
| WebContents* web_contents = bubbles_[caller_id]->GetWebContents();
|
| @@ -107,7 +107,7 @@ void SpeechRecognitionBubbleController::UpdateTabContentsSubscription(
|
| iter != bubbles_.end(); ++iter) {
|
| if (iter->second->GetWebContents() == web_contents &&
|
| iter->first != caller_id) {
|
| - // At least one other bubble exists for the same TabContents. So don't
|
| + // At least one other bubble exists for the same WebContents. So don't
|
| // make any change to the subscription.
|
| return;
|
| }
|
|
|