Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2686)

Unified Diff: chrome/browser/ui/cocoa/applescript/window_applescript.mm

Issue 2685333005: ash: fix regression where ctrl+n put new window on wrong desktop (Closed)
Patch Set: Rebase to ToT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/applescript/window_applescript.mm
diff --git a/chrome/browser/ui/cocoa/applescript/window_applescript.mm b/chrome/browser/ui/cocoa/applescript/window_applescript.mm
index e77835bcb260cf082a27341b206d6427100b6f48..9cbb85cbedb1189acfce88ed2a2d5107c16f0698 100644
--- a/chrome/browser/ui/cocoa/applescript/window_applescript.mm
+++ b/chrome/browser/ui/cocoa/applescript/window_applescript.mm
@@ -77,7 +77,7 @@
}
if ((self = [super init])) {
- browser_ = new Browser(Browser::CreateParams(aProfile));
+ browser_ = new Browser(Browser::CreateParams(aProfile, false));
chrome::NewTab(browser_);
browser_->window()->Show();
base::scoped_nsobject<NSNumber> numID(

Powered by Google App Engine
This is Rietveld 408576698