diff options
Diffstat (limited to 'chrome/browser/app_controller_mac.mm')
-rw-r--r-- | chrome/browser/app_controller_mac.mm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/app_controller_mac.mm b/chrome/browser/app_controller_mac.mm index 09ca8aa..e10bc19 100644 --- a/chrome/browser/app_controller_mac.mm +++ b/chrome/browser/app_controller_mac.mm @@ -102,8 +102,7 @@ bool g_is_opening_new_window = false; // not possible. If the last active browser is minimized (in particular, if // there are only minimized windows), it will unminimize it. Browser* ActivateBrowser(Profile* profile) { - Browser* browser = chrome::FindLastActiveWithProfile(profile, - chrome::HOST_DESKTOP_TYPE_NATIVE); + Browser* browser = chrome::FindLastActiveWithProfile(profile); if (browser) browser->window()->Activate(); return browser; |