Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2409)

Unified Diff: chrome/browser/speech/speech_recognition_bubble_controller.cc

Issue 9969208: TabContents -> WebContentsImpl, part 20. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « chrome/browser/speech/speech_recognition_bubble_controller.h ('k') | chrome/browser/sync/glue/session_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698