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

Unified Diff: chrome/browser/profiles/profile_manager.cc

Issue 7809013: Remove Animation When "Resuming" Window in Lion (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adds context parameter to BrowserWindow::Show(...) Created 9 years, 4 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/profiles/profile_manager.cc
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc
index 9e775349a8ac4065b37d920a9ced6336ce10fb0c..7e339ffc34e1c90e5fc8b87e41a414307fde47f0 100644
--- a/chrome/browser/profiles/profile_manager.cc
+++ b/chrome/browser/profiles/profile_manager.cc
@@ -70,7 +70,7 @@ class NewProfileLauncher : public ProfileManagerObserver {
Browser* browser = Browser::Create(profile);
browser->AddSelectedTabWithURL(GURL(chrome::kChromeUINewTabURL),
PageTransition::LINK);
- browser->window()->Show();
+ browser->window()->Show(BrowserWindow::SHOW_CONTEXT_NORMAL);
}
}

Powered by Google App Engine
This is Rietveld 408576698