diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 21:11:32 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 21:11:32 +0000 |
commit | 371d64ad1a0f5672f6ca396dfcd66c723926db97 (patch) | |
tree | 8b369e640bfd31f02c994772f1a19d9683837dd3 /chrome/browser/ui/blocked_content | |
parent | 8ce34b4642c675a0ba0787d8f21f16bafa05e869 (diff) | |
download | chromium_src-371d64ad1a0f5672f6ca396dfcd66c723926db97.zip chromium_src-371d64ad1a0f5672f6ca396dfcd66c723926db97.tar.gz chromium_src-371d64ad1a0f5672f6ca396dfcd66c723926db97.tar.bz2 |
Remove straggling TabContents references.
BUG=107201
TEST=no visible change
Review URL: https://codereview.chromium.org/11577020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173207 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/blocked_content')
-rw-r--r-- | chrome/browser/ui/blocked_content/blocked_content_container.h | 4 | ||||
-rw-r--r-- | chrome/browser/ui/blocked_content/blocked_content_tab_helper.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/blocked_content/blocked_content_container.h b/chrome/browser/ui/blocked_content/blocked_content_container.h index c491d1b..51e5ce1 100644 --- a/chrome/browser/ui/blocked_content/blocked_content_container.h +++ b/chrome/browser/ui/blocked_content/blocked_content_container.h @@ -21,7 +21,7 @@ namespace content { class WebContents; } -// Takes ownership of TabContentses that are unrequested popup windows. +// Takes ownership of WebContentses that are unrequested popup windows. class BlockedContentContainer : public BlockedContentTabHelperDelegate, public content::WebContentsDelegate { public: @@ -30,7 +30,7 @@ class BlockedContentContainer : public BlockedContentTabHelperDelegate, virtual ~BlockedContentContainer(); // Adds a WebContents to this container. |bounds| are the window bounds - // requested for the TabContents. + // requested for the WebContents. void AddWebContents(content::WebContents* web_contents, WindowOpenDisposition disposition, const gfx::Rect& bounds, diff --git a/chrome/browser/ui/blocked_content/blocked_content_tab_helper.h b/chrome/browser/ui/blocked_content/blocked_content_tab_helper.h index f8107a0..9785599 100644 --- a/chrome/browser/ui/blocked_content/blocked_content_tab_helper.h +++ b/chrome/browser/ui/blocked_content/blocked_content_tab_helper.h @@ -74,7 +74,7 @@ class BlockedContentTabHelper // Object that holds any blocked WebContentses spawned from this WebContents. scoped_ptr<BlockedContentContainer> blocked_contents_; - // Should we block all child TabContents this attempts to spawn. + // Should we block all child WebContentses this attempts to spawn. bool all_contents_blocked_; // Delegate for notifying our owner (usually Browser) about stuff. Not owned |