summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_tabs_module.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-07 21:09:58 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-07 21:09:58 +0000
commit22735af65d1f55a2eec8c95c1b87fe7f608a1dc6 (patch)
tree2dc5126911090a7c891515e20e9952a4f4a031f1 /chrome/browser/extensions/extension_tabs_module.cc
parent12adfaa77882b5049465b2d32e16d23c1f349e2f (diff)
downloadchromium_src-22735af65d1f55a2eec8c95c1b87fe7f608a1dc6.zip
chromium_src-22735af65d1f55a2eec8c95c1b87fe7f608a1dc6.tar.gz
chromium_src-22735af65d1f55a2eec8c95c1b87fe7f608a1dc6.tar.bz2
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
Diffstat (limited to 'chrome/browser/extensions/extension_tabs_module.cc')
-rw-r--r--chrome/browser/extensions/extension_tabs_module.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_tabs_module.cc b/chrome/browser/extensions/extension_tabs_module.cc
index 8568b43..5d0f6f2 100644
--- a/chrome/browser/extensions/extension_tabs_module.cc
+++ b/chrome/browser/extensions/extension_tabs_module.cc
@@ -44,7 +44,8 @@ bool CreateTabFunction::RunImpl() {
// TODO(aa): Handle all the other properties of the new tab.
std::string url;
static_cast<const DictionaryValue*>(args_)->GetString(L"url", &url);
- browser->AddTabWithURL(GURL(url), GURL(), PageTransition::TYPED, true, NULL);
+ browser->AddTabWithURL(GURL(url), GURL(), PageTransition::TYPED, true, -1,
+ NULL);
// Return data about the newly created tab.
if (has_callback())