summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/infobar_gtk.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-05 23:03:14 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-05 23:03:14 +0000
commitb39b708246bd53c09e4fea01dac923d742c303e0 (patch)
treee127360cb5770501bca3e62a079853708ae52be4 /chrome/browser/gtk/infobar_gtk.cc
parentbe930259c6ff84c0211298c0cdeecbf5d4863850 (diff)
downloadchromium_src-b39b708246bd53c09e4fea01dac923d742c303e0.zip
chromium_src-b39b708246bd53c09e4fea01dac923d742c303e0.tar.gz
chromium_src-b39b708246bd53c09e4fea01dac923d742c303e0.tar.bz2
Implement and use the -> operator for OwnedWidgetGtk.
Also change dragged_tabs_gtk's container_ to be a OwnedWidgetGtk just to be on the safe side. BUG=none TEST=none Review URL: http://codereview.chromium.org/119221 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/infobar_gtk.cc')
-rw-r--r--chrome/browser/gtk/infobar_gtk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/gtk/infobar_gtk.cc b/chrome/browser/gtk/infobar_gtk.cc
index fbf6b49..1a7b53f 100644
--- a/chrome/browser/gtk/infobar_gtk.cc
+++ b/chrome/browser/gtk/infobar_gtk.cc
@@ -89,8 +89,8 @@ void InfoBar::AnimateOpen() {
void InfoBar::Open() {
slide_widget_->OpenWithoutAnimation();
- if (border_bin_.get()->window)
- gdk_window_lower(border_bin_.get()->window);
+ if (border_bin_->window)
+ gdk_window_lower(border_bin_->window);
}
void InfoBar::AnimateClose() {