diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 06:19:01 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-04 06:19:01 +0000 |
commit | 8e9f4a3ae2f3d584a57a1197d42ac4d22f0b98ac (patch) | |
tree | 8122cec7fef6c843a5bfb2f8ec22eb7f246849d8 | |
parent | 4ab4ae67224d00b4ff162fc201442e7933f6df4d (diff) | |
download | chromium_src-8e9f4a3ae2f3d584a57a1197d42ac4d22f0b98ac.zip chromium_src-8e9f4a3ae2f3d584a57a1197d42ac4d22f0b98ac.tar.gz chromium_src-8e9f4a3ae2f3d584a57a1197d42ac4d22f0b98ac.tar.bz2 |
Try to fix chromeos tests.
This is exactly why having overloads with the same name are a bad idea.
BUG=none
TEST=none
TBR=ben
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76884 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ui/views/frame/browser_frame_gtk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/views/frame/browser_frame_gtk.cc b/chrome/browser/ui/views/frame/browser_frame_gtk.cc index 2b41b5e..904bff5 100644 --- a/chrome/browser/ui/views/frame/browser_frame_gtk.cc +++ b/chrome/browser/ui/views/frame/browser_frame_gtk.cc @@ -50,7 +50,7 @@ void BrowserFrameGtk::Init() { browser::CreateBrowserNonClientFrameView(this, browser_view_); GetNonClientView()->SetFrameView(browser_frame_view_); - WindowGtk::Init(NULL, gfx::Rect()); + WindowGtk::InitWindow(NULL, gfx::Rect()); // Don't focus anything on creation, selecting a tab will set the focus. } |