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

Unified Diff: chrome/browser/ui/views/uninstall_view.cc

Issue 2778223004: Move GetBaseAppName into install_static. (Closed)
Patch Set: sync to position 460686 Created 3 years, 9 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
« no previous file with comments | « no previous file | chrome/install_static/chromium_install_modes.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/uninstall_view.cc
diff --git a/chrome/browser/ui/views/uninstall_view.cc b/chrome/browser/ui/views/uninstall_view.cc
index 712eae184d4051af3afbc217453b3a7fb4782eeb..7b8a314bac3b478098fd7f956e56cc5a8678eb6e 100644
--- a/chrome/browser/ui/views/uninstall_view.cc
+++ b/chrome/browser/ui/views/uninstall_view.cc
@@ -13,7 +13,6 @@
#include "chrome/browser/ui/uninstall_browser_prompt.h"
#include "chrome/common/chrome_result_codes.h"
#include "chrome/grit/chromium_strings.h"
-#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/shell_util.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/views/controls/button/checkbox.h"
@@ -80,8 +79,7 @@ void UninstallView::SetupControls() {
if (ShellUtil::CanMakeChromeDefaultUnattended() &&
shell_integration::GetDefaultBrowser() == shell_integration::IS_DEFAULT) {
browsers_.reset(new BrowsersMap());
- ShellUtil::GetRegisteredBrowsers(BrowserDistribution::GetDistribution(),
- browsers_.get());
+ ShellUtil::GetRegisteredBrowsers(browsers_.get());
if (!browsers_->empty()) {
layout->AddPaddingRow(0, views::kRelatedControlVerticalSpacing);
« no previous file with comments | « no previous file | chrome/install_static/chromium_install_modes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698