From 22735af65d1f55a2eec8c95c1b87fe7f608a1dc6 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Tue, 7 Apr 2009 21:09:58 +0000 Subject: Re-land popup routing fix for browser. Just the bugfix + test now. Test is disabled pending a working framework. http://crbug.com/8472 Review URL: http://codereview.chromium.org/59007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13282 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/profile_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/profile_manager.cc') diff --git a/chrome/browser/profile_manager.cc b/chrome/browser/profile_manager.cc index 407c39b..82d7192 100644 --- a/chrome/browser/profile_manager.cc +++ b/chrome/browser/profile_manager.cc @@ -139,7 +139,7 @@ Profile* ProfileManager::AddProfileByPath(const FilePath& path) { void ProfileManager::NewWindowWithProfile(Profile* profile) { DCHECK(profile); Browser* browser = Browser::Create(profile); - browser->AddTabWithURL(GURL(), GURL(), PageTransition::TYPED, true, NULL); + browser->AddTabWithURL(GURL(), GURL(), PageTransition::TYPED, true, -1, NULL); browser->window()->Show(); } -- cgit v1.1