summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 19:56:42 +0000
committerestade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 19:56:42 +0000
commit3fbdd8ed521d99cf94ef387321ea34cecf853a5e (patch)
treeab006d1bd4455e4ca713633fd7b4402008687727 /chrome
parentf70de8a744fc70811bfb5a9c8202505f9f43ff8a (diff)
downloadchromium_src-3fbdd8ed521d99cf94ef387321ea34cecf853a5e.zip
chromium_src-3fbdd8ed521d99cf94ef387321ea34cecf853a5e.tar.gz
chromium_src-3fbdd8ed521d99cf94ef387321ea34cecf853a5e.tar.bz2
Fix insidious typo from r16329
TBR=erg BUG=12533 Review URL: http://codereview.chromium.org/113781 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16779 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/gtk/tab_contents_container_gtk.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/tab_contents_container_gtk.cc b/chrome/browser/gtk/tab_contents_container_gtk.cc
index b05070b..4305519 100644
--- a/chrome/browser/gtk/tab_contents_container_gtk.cc
+++ b/chrome/browser/gtk/tab_contents_container_gtk.cc
@@ -87,7 +87,7 @@ void TabContentsContainerGtk::SetTabContents(TabContents* tab_contents) {
}
void TabContentsContainerGtk::DetachTabContents(TabContents* tab_contents) {
- gfx::NativeView widget = tab_contents_->GetNativeView();
+ gfx::NativeView widget = tab_contents->GetNativeView();
// It is possible to detach an unrealized, unparented TabContents if you
// slow things down enough in valgrind. Might happen in the real world, too.
if (widget && widget->parent) {