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

Side by Side Diff: chrome/browser/download/download_manager.cc

Issue 2659004: Show theme loading info bubble and info bars in last normal browser. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 6 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/extensions/extension_install_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/download/download_manager.h" 5 #include "chrome/browser/download/download_manager.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after
1469 } else { 1469 } else {
1470 bool is_gallery_download = 1470 bool is_gallery_download =
1471 ExtensionsService::IsDownloadFromGallery(download_url, referrer_url); 1471 ExtensionsService::IsDownloadFromGallery(download_url, referrer_url);
1472 installer->set_allow_privilege_increase(true); 1472 installer->set_allow_privilege_increase(true);
1473 installer->set_original_url(download_url); 1473 installer->set_original_url(download_url);
1474 installer->set_force_web_origin_to_download_url(!is_gallery_download); 1474 installer->set_force_web_origin_to_download_url(!is_gallery_download);
1475 installer->InstallCrx(full_path); 1475 installer->InstallCrx(full_path);
1476 } 1476 }
1477 } else { 1477 } else {
1478 TabContents* contents = NULL; 1478 TabContents* contents = NULL;
1479 Browser* last_active = BrowserList::GetLastActiveWithProfile(profile_); 1479 // Get last active normal browser of profile.
1480 Browser* last_active = BrowserList::FindBrowserWithType(profile_,
1481 Browser::TYPE_NORMAL, false);
1480 if (last_active) 1482 if (last_active)
1481 contents = last_active->GetSelectedTabContents(); 1483 contents = last_active->GetSelectedTabContents();
1482 if (contents) { 1484 if (contents) {
1483 contents->AddInfoBar( 1485 contents->AddInfoBar(
1484 new SimpleAlertInfoBarDelegate(contents, 1486 new SimpleAlertInfoBarDelegate(contents,
1485 l10n_util::GetString( 1487 l10n_util::GetString(
1486 IDS_EXTENSION_INCOGNITO_INSTALL_INFOBAR_LABEL), 1488 IDS_EXTENSION_INCOGNITO_INSTALL_INFOBAR_LABEL),
1487 ResourceBundle::GetSharedInstance().GetBitmapNamed( 1489 ResourceBundle::GetSharedInstance().GetBitmapNamed(
1488 IDR_INFOBAR_PLUGIN_INSTALL), 1490 IDR_INFOBAR_PLUGIN_INSTALL),
1489 true)); 1491 true));
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1822 observing_download_manager_->NotifyModelChanged(); 1824 observing_download_manager_->NotifyModelChanged();
1823 } 1825 }
1824 1826
1825 void DownloadManager::OtherDownloadManagerObserver::SetDownloads( 1827 void DownloadManager::OtherDownloadManagerObserver::SetDownloads(
1826 std::vector<DownloadItem*>& downloads) { 1828 std::vector<DownloadItem*>& downloads) {
1827 } 1829 }
1828 1830
1829 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() { 1831 void DownloadManager::OtherDownloadManagerObserver::ManagerGoingDown() {
1830 observed_download_manager_ = NULL; 1832 observed_download_manager_ = NULL;
1831 } 1833 }
OLDNEW
« no previous file with comments | « chrome/browser/browser.cc ('k') | chrome/browser/extensions/extension_install_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698