summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_browser_event_router.cc
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 13:25:10 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 13:25:10 +0000
commit0932b30c615c2ff3ddf7710467e812652fb900b6 (patch)
tree04f5565c90b9a5295d6a86061a6bb45c36bb5c78 /chrome/browser/extensions/extension_browser_event_router.cc
parente018d3b0c50982871526779cfa53a4a0eac36a68 (diff)
downloadchromium_src-0932b30c615c2ff3ddf7710467e812652fb900b6.zip
chromium_src-0932b30c615c2ff3ddf7710467e812652fb900b6.tar.gz
chromium_src-0932b30c615c2ff3ddf7710467e812652fb900b6.tar.bz2
TabContents -> WebContentsImpl, part 18.
TabContents -> WebContents in chrome/, part 2. BUG=105875 TEST=no change Review URL: https://chromiumcodereview.appspot.com/10107002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132568 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_browser_event_router.cc')
-rw-r--r--chrome/browser/extensions/extension_browser_event_router.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_browser_event_router.cc b/chrome/browser/extensions/extension_browser_event_router.cc
index 2bf48f7..3346a9e 100644
--- a/chrome/browser/extensions/extension_browser_event_router.cc
+++ b/chrome/browser/extensions/extension_browser_event_router.cc
@@ -153,10 +153,10 @@ void ExtensionBrowserEventRouter::RegisterForTabNotifications(
this, content::NOTIFICATION_NAV_ENTRY_COMMITTED,
content::Source<NavigationController>(&contents->GetController()));
- // Observing TAB_CONTENTS_DESTROYED is necessary because it's
+ // Observing NOTIFICATION_WEB_CONTENTS_DESTROYED is necessary because it's
// possible for tabs to be created, detached and then destroyed without
// ever having been re-attached and closed. This happens in the case of
- // a devtools TabContents that is opened in window, docked, then closed.
+ // a devtools WebContents that is opened in window, docked, then closed.
registrar_.Add(this, content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
content::Source<WebContents>(contents));
}