Show theme loading info bubble and info bars in last normal browser.

BUG=chromium-os:1797
TEST=Verify fix for chromium-os:1791.

Review URL: http://codereview.chromium.org/2659004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49254 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/download/download_manager.cc b/chrome/browser/download/download_manager.cc
index 71b6ea6..63bb557d 100644
--- a/chrome/browser/download/download_manager.cc
+++ b/chrome/browser/download/download_manager.cc
@@ -1476,7 +1476,9 @@
     }
   } else {
     TabContents* contents = NULL;
-    Browser* last_active = BrowserList::GetLastActiveWithProfile(profile_);
+    // Get last active normal browser of profile.
+    Browser* last_active = BrowserList::FindBrowserWithType(profile_,
+        Browser::TYPE_NORMAL, false);
     if (last_active)
       contents = last_active->GetSelectedTabContents();
     if (contents) {